update_requester_group
Modify requester group details in Freshservice by updating group name or description. Use this tool to ensure accurate and up-to-date group information for better user management.
Instructions
Update an requester group in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
id | Yes | ||
name | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"id": {
"title": "Id",
"type": "integer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
}
},
"required": [
"id"
],
"title": "update_requester_groupArguments",
"type": "object"
}