activate_workflow
Initiate and activate workflows in ServiceNow by specifying the workflow ID or sys_id, enabling task automation and process management.
Instructions
Activate a workflow in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflow_id | Yes | Workflow ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for activating a workflow.",
"properties": {
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "ActivateWorkflowParams",
"type": "object"
}