Skip to main content
The Status Labels API allows you to manage the status labels that define whether assets are deployable, pending, archived, or undeployable.

List Status Labels

integer
default:"50"
Number of results to return
integer
default:"0"
Offset for pagination
Search string to filter results
string
default:"created_at"
Column to sort by. Allowed values: id, name, assets_count, color, default_label
string
default:"desc"
Sort order: asc or desc
string
Filter by status type: deployable, pending, archived, undeployable
integer
Total number of status labels
array
Array of status label objects

Get Status Label by ID

integer
required
The status label ID

Create Status Label

string
required
Status label name
string
required
Status type. Allowed values: deployable, pending, archived, undeployable
string
Hex color code (e.g., #FF5733)
boolean
default:"false"
Whether to show this status in the navigation sidebar
boolean
default:"false"
Whether this should be the default status label for new assets
string
Status label notes
Status Types:
  • deployable: Assets that can be checked out to users
  • pending: Assets awaiting some action (repairs, configuration, etc.)
  • archived: Assets that are no longer in active use
  • undeployable: Assets that cannot be deployed (broken, lost, etc.)

Update Status Label

integer
required
The status label ID

Delete Status Label

integer
required
The status label ID
A status label cannot be deleted if it has any assets assigned to it. You must first change the status of all associated assets.

Check if Deployable

integer
required
The status label ID
Returns whether the specified status label is deployable.

Get Assets by Status

integer
required
The status label ID
integer
default:"50"
Number of results to return
integer
default:"0"
Offset for pagination
Returns all assets with the specified status label.

Get Asset Count by Status Name

Returns a count of assets grouped by status label name (useful for charts and dashboards).

Get Asset Count by Status Type

Returns a count of assets grouped by meta status type (deployable, pending, archived, undeployable).