PUT
/
accounts
/
settings
/
{key}
curl --request PUT \
  --url https://api.mudstack.com/accounts/settings/{key} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --data '{
  "value": true
}'
true

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string
required

Path Parameters

key
string
required

Body

application/json
value
boolean

Response

200 - application/json
Successfully updated account setting

The response is of type boolean.