curl --request POST \
--url http://localhost:3000/users/invitations/accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"name": "<string>",
"password": "<string>"
}
'{
"statusCode": 123,
"message": "OK",
"data": {
"message": "<string>"
}
}curl --request POST \
--url http://localhost:3000/users/invitations/accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"name": "<string>",
"password": "<string>"
}
'{
"statusCode": 123,
"message": "OK",
"data": {
"message": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.