update_group
Modify group details such as name, description, email, manager, and type in ServiceNow using the Group ID. Manage group attributes and hierarchy efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UpdateGroupParams": {
"description": "Parameters for updating a group.",
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Whether the group is active",
"title": "Active"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the group",
"title": "Description"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Email address for the group",
"title": "Email"
},
"group_id": {
"description": "Group ID or sys_id to update",
"title": "Group Id",
"type": "string"
},
"manager": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Manager of the group (sys_id or username)",
"title": "Manager"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Name of the group",
"title": "Name"
},
"parent": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Parent group (sys_id or name)",
"title": "Parent"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of the group",
"title": "Type"
}
},
"required": [
"group_id"
],
"title": "UpdateGroupParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/UpdateGroupParams"
}
},
"required": [
"params"
],
"title": "update_groupArguments",
"type": "object"
}