Skip to main content
POST
/
participants
/
add
Add participant to case
curl --request POST \
  --url https://cases.platform.arb.inc/participants/add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "userID": "2720f109-0caf-4c62-af22-5d08c853711c",
  "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

Example:

"2025-08-00292"

userID
string<uuid>
required

UUID of the user being added

Example:

"2720f109-0caf-4c62-af22-5d08c853711c"

isObserver
boolean

Whether the user is added as an observer

Example:

false

Response

200 - text/plain

Successfully added participant

The response is of type string.

Example:

"participant was successfully added to the case"