POST
https://api.main.apexscore.ai
/
api
/
v1
/
organization-invitations
/
accept
curl --request POST \
  --url https://api.main.apexscore.ai/api/v1/organization-invitations/accept/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "e8e912b6-ba9b-4c3a-bb4f-d04bdc370843",
  "user": {
    "password": "pwd",
    "confirm_password": "pwd",
    "first_name": "Fname",
    "last_name": "Lname"
  }
}'
{
  "status": "accepted"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

The response is of type object.