list_workflow_versions
Retrieve and manage workflow versions in ServiceNow by specifying a workflow ID and optional limit or offset parameters for precise version control.
Instructions
List workflow versions from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of records to return | |
offset | No | Offset to start from | |
workflow_id | Yes | Workflow ID or sys_id |
Input Schema (JSON Schema)
{
"description": "Parameters for listing workflow versions.",
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Maximum number of records to return",
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 0,
"description": "Offset to start from",
"title": "Offset"
},
"workflow_id": {
"description": "Workflow ID or sys_id",
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "ListWorkflowVersionsParams",
"type": "object"
}