manage_manufacturers
Create, retrieve, list, update, and delete manufacturer records in Snipe-IT to manage companies that produce assets.
Instructions
Manage Snipe-IT manufacturers with CRUD operations.
Manufacturers represent the companies that produce assets.
Operations:
create: Create a new manufacturer (requires manufacturer_data with name)
get: Retrieve a single manufacturer by ID
list: List manufacturers with optional pagination and filtering
update: Update an existing manufacturer (requires manufacturer_id and manufacturer_data)
delete: Delete a manufacturer (requires manufacturer_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 manufacturers | |
| offset | No | Number of results to skip (for list action) | |
| search | No | Search query (for list action) | |
| manufacturer_id | No | Manufacturer ID (required for get, update, delete) | |
| manufacturer_data | No | Manufacturer data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||