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

Authorizations

Authorization
string
header
required

access token

Body

application/json

User preferences to update. Only non-null values will be applied.

docket_filings
boolean | null

Whether to receive docket filing alerts. Set to null to keep the existing value.

Example:

true

Response

200 - text/plain

Preferences updated successfully.

The response is of type string.

Example:

"Preferences updated successfully"