manage_groups
Create, retrieve, list, update, and delete Snipe-IT permission groups to control user access rights.
Instructions
Manage Snipe-IT permission groups with CRUD operations.
Groups are used to manage permissions for multiple users at once. Users can belong to multiple groups, and permissions are cumulative.
Actions:
create: Create a new group (requires group_data with name)
get: Retrieve a single group by ID
list: List groups with optional pagination and filtering
update: Update an existing group (including permissions)
delete: Delete a group
Returns: dict: Result of the operation including success status and data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (for list action) | |
| action | Yes | The action to perform on groups | |
| offset | No | Number of results to skip (for list action) | |
| search | No | Search query (for list action) | |
| group_id | No | Group ID (required for get, update, delete) | |
| group_data | No | Group data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||