update_group
Modify group details in ServiceNow, including name, description, manager, parent group, type, email, and active status, using the group ID.
Instructions
Update an existing group in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether the group is active | |
| description | No | Description of the group | |
| No | Email address for the group | ||
| group_id | Yes | Group ID or sys_id to update | |
| manager | No | Manager of the group (sys_id or username) | |
| name | No | Name of the group | |
| parent | No | Parent group (sys_id or name) | |
| type | No | Type of the group |
Input Schema (JSON Schema)
{
"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"
}