Skip to main content
POST
/
register
/
response-portal
Register response portal user for case alerts
curl --request POST \
  --url https://alerts.platform.arb.inc/register/response-portal \
  --header 'Content-Type: application/json' \
  --data '
{
  "pushSubscriptionID": "3f7c8d2a-9b4e-4f1d-8a6c-2e5b7d9f3a1c",
  "caseInviteCode": "ABC123XYZ"
}
'
"Successfully registered"

Body

application/json
pushSubscriptionID
string
required

Unique identifier for the user's push notification subscription

Example:

"3f7c8d2a-9b4e-4f1d-8a6c-2e5b7d9f3a1c"

caseInviteCode
string
required

Invitation code linking the user to a specific case

Example:

"ABC123XYZ"

Response

200 - text/plain

Successfully registered for case alerts

The response is of type string.

Example:

"Successfully registered"