Skip to main content
POST
/
preferences
/
update
Update user alert preferences
curl --request POST \
  --url https://alerts.platform.arb.inc/preferences/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "docket_filings": true,
  "case_created": false
}
'
"Preferences updated successfully"

Authorizations

Authorization
string
header
required

access token

Body

application/json
docket_filings
boolean

Whether to receive alerts when new docket filings occur

Example:

true

case_created
boolean

Whether to receive a confirmation email when a new case is filed

Example:

false

Response

200 - text/plain

Preferences updated successfully

The response is of type string.

Example:

"Preferences updated successfully"