manage_licenses
Perform CRUD operations on software licenses in Snipe-IT: create, retrieve, list, update, and delete with seat-based allocation.
Instructions
Manage Snipe-IT licenses with CRUD operations.
Licenses track software licenses with seat-based allocation.
Operations:
create: Create a new license (requires license_data with name and seats)
get: Retrieve a single license by ID
list: List licenses with optional pagination and filtering
update: Update an existing license (requires license_id and license_data)
delete: Delete a license (requires license_id)
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 action) | |
| order | No | Sort order (for list action) | |
| action | Yes | The action to perform on licenses | |
| offset | No | Number of results to skip (for list action) | |
| search | No | Search query (for list action) | |
| license_id | No | License ID (required for get, update, delete) | |
| license_data | No | License data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||