Team

Respond to a team invite

POST
/api/v1/team/invite/respond
/api/v1/team/invite/respond

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The invite ID and the response

inviteId
Required
string

Minimum length: 1

acceptboolean

curl -X POST "https://example.com/api/v1/team/invite/respond" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "inviteId": "string",
    "accept": true
  }'

OK