manage_depreciations
Create, retrieve, update, and delete asset depreciation schedules in Snipe-IT, defining how asset values decline over time.
Instructions
Manage Snipe-IT depreciations with CRUD operations.
Depreciations define how assets lose value over time (e.g., 3-year straight-line).
Operations:
create: Create a new depreciation (requires depreciation_data with name and months)
get: Retrieve a single depreciation by ID
list: List depreciations with optional pagination and filtering
update: Update an existing depreciation (requires depreciation_id and depreciation_data)
delete: Delete a depreciation (requires depreciation_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 depreciations | |
| offset | No | Number of results to skip (for list action) | |
| search | No | Search query (for list action) | |
| depreciation_id | No | Depreciation ID (required for get, update, delete) | |
| depreciation_data | No | Depreciation data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||