PUT
/
workspaces
/
settings
curl --request PUT \
  --url https://api.mudstack.com/workspaces/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '{
  "settings": {
    "workspace_id": "<string>",
    "attribute_id": "<string>",
    "value": "<any>"
  }
}'
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
x-workspace-id
string
required

Body

application/json
settings
object

Response

200 - application/json
The status of the update operation.

The response is of type boolean.