Skip to main content
POST
/
participants
/
add
Add a participant to a case
curl --request POST \
  --url https://api.platform.arb.inc/participants/add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-10-00123",
  "userID": "8f1b2c33-2db3-4a9e-9f44-5d5a6c7b8e90",
  "isObserver": false
}
'
"participant was successfully added to the case"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Target case identifier (1–36 chars).

Required string length: 1 - 36
Example:

"2025-10-00123"

userID
string<uuid>
required

UUID of the user to add.

Example:

"8f1b2c33-2db3-4a9e-9f44-5d5a6c7b8e90"

isObserver
boolean

If true, the user is added as an observer.

Example:

false

Response

200 - text/plain

Participant was successfully added to the case

The response is of type string.

Example:

"participant was successfully added to the case"