Invite a team member
curl --request POST \
--url https://api.fanvue.com/v1/agencies/invites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>' \
--data '
{
"email": "jsmith@example.com"
}
'import requests
url = "https://api.fanvue.com/v1/agencies/invites"
payload = { "email": "jsmith@example.com" }
headers = {
"X-Fanvue-API-Version": "<x-fanvue-api-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Fanvue-API-Version': '<x-fanvue-api-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({email: 'jsmith@example.com'})
};
fetch('https://api.fanvue.com/v1/agencies/invites', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"message": "Invitation sent successfully.",
"inviteUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Agency Management
Invite a team member
Invite a new team member to the authenticated user’s agency by email.
The invited user must have an existing account, must not be a creator, and must not already be invited to this agency.
Requires: Agency admin access
POST
/
v1
/
agencies
/
invites
Invite a team member
curl --request POST \
--url https://api.fanvue.com/v1/agencies/invites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>' \
--data '
{
"email": "jsmith@example.com"
}
'import requests
url = "https://api.fanvue.com/v1/agencies/invites"
payload = { "email": "jsmith@example.com" }
headers = {
"X-Fanvue-API-Version": "<x-fanvue-api-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Fanvue-API-Version': '<x-fanvue-api-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({email: 'jsmith@example.com'})
};
fetch('https://api.fanvue.com/v1/agencies/invites', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"message": "Invitation sent successfully.",
"inviteUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Required scope
write:agency— Manage agency team members and invites, including inviting new team members and creators.
Authorizations
OAuth 2.0 access token, presented as a JWT bearer token in the Authorization header. Obtain a token via the authorization-code flow; the scopes granted to the token determine which operations it may call.
Headers
API version to use for the request
Example:
"2025-06-26"
Body
application/json
Email address of the user to invite
Was this page helpful?