get_workflow_activities
Retrieve activities for a specific workflow in ServiceNow using the workflow ID and optional version. Streamline workflow management and data access through the ServiceNow MCP Server.
Instructions
Get activities for a specific workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetWorkflowActivitiesParams": {
"description": "Parameters for getting workflow activities.",
"properties": {
"version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Specific version to get activities for",
"title": "Version"
},
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "GetWorkflowActivitiesParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetWorkflowActivitiesParams"
}
},
"required": [
"params"
],
"title": "get_workflow_activitiesArguments",
"type": "object"
}