Skip to content

Create Invite

Request

Create invitation for new tenant user

Security
bearerToken
Path
tenantstringrequired
Bodyapplication/jsonrequired
receiverstring, (email)required

Email address of the person to invite

rolestringrequired

Role to assign to the invited user

Enum:"admin""user""viewer"
languagestringrequired

Language for the invitation email

Example:"en"
curl -i -X POST \
  'https://docs.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/invite' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "receiver": "user@example.com",
    "role": "admin",
    "language": "en"
  }'

Responses

Invitation created successfully