list_workflows
Retrieve and filter workflows from ServiceNow instances using customizable parameters like active status, name, and query limits for efficient workflow management.
Instructions
List workflows from ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListWorkflowsParams": {
"description": "Parameters for listing workflows.",
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by active status",
"title": "Active"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Maximum number of records to return",
"title": "Limit"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by name (contains)",
"title": "Name"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 0,
"description": "Offset to start from",
"title": "Offset"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional query string",
"title": "Query"
}
},
"title": "ListWorkflowsParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/ListWorkflowsParams"
}
},
"required": [
"params"
],
"title": "list_workflowsArguments",
"type": "object"
}