Skip to main content
POST
/
api
/
invite
/
accept
/
{token}
Accept a user invitation.
curl --request POST \
  --url https://api.example.com/api/invite/accept/{token} \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "John",
  "lastName": "Doe",
  "password": "StrongPassword123!"
}
'

Path Parameters

token
string
required

Body

application/json
firstName
string
required

First name of the user to invite

Example:

"John"

lastName
string
required

Last name of the user to invite

Example:

"Doe"

password
string
required

Password for the invited user

Example:

"StrongPassword123!"

Response

201 - undefined