create_workflow
Automate workflow creation in ServiceNow by defining active status, name, description, table, and additional attributes for streamlined process management.
Instructions
Create a new workflow in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateWorkflowParams": {
"description": "Parameters for creating a new workflow.",
"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"
],
"title": "CreateWorkflowParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CreateWorkflowParams"
}
},
"required": [
"params"
],
"title": "create_workflowArguments",
"type": "object"
}