update_workflow_activity
Modify workflow activities by updating details such as name, description, or attributes via the ServiceNow MCP Server.
Instructions
Update an existing activity in a workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes | Activity ID or sys_id | |
attributes | No | Additional attributes for the activity | |
description | No | Description of the activity | |
name | No | Name of the activity |
Input Schema (JSON Schema)
{
"description": "Parameters for updating a workflow activity.",
"properties": {
"activity_id": {
"description": "Activity ID or sys_id",
"title": "Activity Id",
"type": "string"
},
"attributes": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional attributes for the activity",
"title": "Attributes"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the activity",
"title": "Description"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Name of the activity",
"title": "Name"
}
},
"required": [
"activity_id"
],
"title": "UpdateWorkflowActivityParams",
"type": "object"
}