Skip to content

Join

Create

Example request:

{
"data": {
"type": "identity",
"attributes": {
"email": "[email protected]",
"password": "***"
}
}
}

Example response:

{
"data": {
"id": "4e9b9556-f293-41d3-89ab-ef683e5464a1",
"type": "identity",
"attributes": {
...
}
}
}

This endpoint completes an invite and user joins an account.

HTTP Request

POST /auth/join/:invite_token

URL Parameters

ParameterDescription
invite_tokenInvite token of the user

Show

Example response:

{
"data": {
"id": "92119760-914e-4f82-bb96-041e0be82e18",
"type": "user",
"attributes": {
...
}
}
}

This endpoint returns a user by invite_token.

HTTP Request

GET /auth/join/:invite_token

URL Parameters

ParameterDescription
invite_tokenInvite token of the user