Skip to main content
POST
/
service-of-notice
/
codes
/
create
Create a one-time join code
curl --request POST \
  --url https://cases.platform.arb.inc/service-of-notice/codes/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-09-00123"
}
'
{
  "code": "4YP-997-FWH",
  "url": "https://cases.arb.inc/respond"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The ID of the case to create a code for.

Example:

"2025-09-00123"

Response

Code successfully created.

code
string

The join code the respondent must enter.

Example:

"4YP-997-FWH"

url
string

URL where the respondent should go to enter the code.

Example:

"https://cases.arb.inc/respond"