POST
/
workspaces
/
tags
curl --request POST \
  --url https://api.mudstack.com/workspaces/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '[
  {
    "id": "<string>",
    "workspace_id": "<string>",
    "name": "<string>",
    "color": "<string>",
    "created_by_user_id": "<string>",
    "sequence": 123
  }
]'
[
  {
    "id": "<string>",
    "workspace_id": "<string>",
    "name": "<string>",
    "color": "<string>",
    "created_by_user_id": "<string>",
    "sequence": 123
  }
]

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 ยท object[]

The body is of type object[].

Response

200 - application/json
The created workspace tags.

The response is of type object[].