create_workflow
Create new workflows in ServiceNow to automate business processes, define triggers, and manage task sequences for incident management, change requests, and service catalog operations.
Instructions
Create a new workflow in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether the workflow is active | |
| attributes | No | Additional attributes for the workflow | |
| description | No | Description of the workflow | |
| name | Yes | Name of the workflow | |
| table | No | Table the workflow applies to |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"description": "Whether the workflow is active",
"title": "Active"
},
"attributes": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional attributes for the workflow",
"title": "Attributes"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the workflow",
"title": "Description"
},
"name": {
"description": "Name of the workflow",
"title": "Name",
"type": "string"
},
"table": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Table the workflow applies to",
"title": "Table"
}
},
"required": [
"name"
],
"type": "object"
}