GET
/
workspaces
/
assetStatuses
curl --request GET \
  --url https://api.mudstack.com/workspaces/assetStatuses \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>'
[
  {
    "id": "<string>",
    "workspace_id": "<string>",
    "name": "<string>",
    "color": "<string>",
    "rank": "<string>",
    "created_by_user_id": "<string>"
  }
]

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 asset statuses
id
string

Unique identifier for the asset status.

workspace_id
string

Identifier of the workspace to which the asset status belongs.

name
string

Name of the asset status.

color
string

Color associated with the asset status.

rank
string

Rank of the asset status.

created_by_user_id
string

Identifier of the user who created the asset status.