get_workflow_activities
Retrieve activities for a specific workflow by providing the workflow ID and optional version. Enables efficient workflow management within ServiceNow instances.
Instructions
Get activities for a specific workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
version | No | Specific version to get activities for | |
workflow_id | Yes | Workflow ID or sys_id |
Input Schema (JSON Schema)
{
"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"
}