manage_status_labels
Create, retrieve, update, delete, and list Snipe-IT status labels to manage asset states like deployable, pending, or archived.
Instructions
Manage Snipe-IT status labels with CRUD operations.
Status labels define the state of assets (deployable, pending, archived, etc.).
Operations:
create: Create a new status label (requires status_label_data with name and type)
get: Retrieve a single status label by ID
list: List status labels with optional pagination and filtering
update: Update an existing status label (requires status_label_id and status_label_data)
delete: Delete a status label (requires status_label_id)
assets: List all assets with a specific status label
Returns: dict: Result of the operation including success status and data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Field to sort by (for list action) | |
| limit | No | Number of results to return (for list/assets actions) | |
| order | No | Sort order (for list action) | |
| action | Yes | The action to perform on status labels | |
| offset | No | Number of results to skip (for list/assets actions) | |
| search | No | Search query (for list action) | |
| status_label_id | No | Status label ID (required for get, update, delete, assets) | |
| status_label_data | No | Status label data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||