Skip to main content
POST
/
api
/
invitations
/
accept
Accept Invitation
curl --request POST \
  --url https://api.example.com/api/invitations/accept \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Cookies

antidote_session
string | null

Body

application/json
token
string
required
password
string
required

Response

Successful Response

The response is of type Response Accept Invitation Api Invitations Accept Post · object.