GET
/
workspaces
/
settings
curl --request GET \
  --url https://api.mudstack.com/workspaces/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
[
  {
    "workspace_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
x-workspace-id
string
required

Response

200 - application/json
A list of workspace settings.
workspace_id
string
required

The unique identifier of the workspace.

attribute_id
string
required

The unique identifier of the attribute.

value
any
required

The value of the attribute.