Skip to main content
POST
https://api.unify.ai
/
v0
/
invites
/
{token}
/
accept
curl --request POST \
  --url 'https://api.unify.ai/v0/invites/<token>/accept' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "message": "string",
    "organization_id": "integer",
    "organization_name": "string",
    "api_key": "string"
}
Accept an organization invite. The invite must be pending and not expired. The current user’s email must match the invite email.

Authorizations

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

Path Parameters

token
string
required
curl --request POST \
  --url 'https://api.unify.ai/v0/invites/<token>/accept' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "message": "string",
    "organization_id": "integer",
    "organization_name": "string",
    "api_key": "string"
}