Skip to main content
POST
/
invites
/
accept
Accept an invite to a case
curl --request POST \
  --url https://cases.platform.arb.inc/invites/accept \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "a1b2c3d4"
}
'
{
  "caseID": "2025-09-000123"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
code
string
required

The invite code to use. Non-letters/numbers are ignored and it is lowercased.

Example:

"a1b2c3d4"

Response

Invite accepted.

caseID
string

The ID of the case the user was added to.

Example:

"2025-09-000123"