GET
/
accounts
/
settings
curl --request GET \
  --url https://api.mudstack.com/accounts/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>'
[
  {
    "account_id": "<string>",
    "attribute_id": "<string>",
    "value": "<any>"
  }
]

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

Response

200 - application/json
Successfully retrieved account settings
account_id
string

The unique identifier for the account.

attribute_id
string

The unique identifier for the attribute.

value
any

The value of the setting.