GET
/
users
/
settings
curl --request GET \
  --url https://api.mudstack.com/users/settings \
  --header 'Authorization: Bearer <token>'
[
  {
    "user_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.

Response

200 - application/json
A list of user settings
user_id
string

The ID of the user.

attribute_id
string

The ID of the attribute.

value
any

The value of the setting.