Skip to main content
POST
/
agencies
/
creator-invites
Invite a creator
curl --request POST \
  --url https://api.fanvue.com/agencies/creator-invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Fanvue-API-Version: <x-fanvue-api-version>' \
  --data '
{
  "email": "fan@example.com"
}
'
{
  "success": true,
  "message": "Creator invitation sent successfully."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Fanvue-API-Version
string
default:2025-06-26
required

API version to use for the request

Example:

"2025-06-26"

Body

application/json
email
string<email>
required

Email address of the creator to invite

Response

Creator invitation sent successfully

success
boolean
required
message
string
required