Workato · Schema
Recipe
A Workato recipe representing an automated workflow.
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the recipe. |
| name | string | Display name of the recipe. |
| description | string | Human-readable description of what the recipe does. |
| folder_id | integer | ID of the folder containing this recipe. |
| running | boolean | Whether the recipe is currently active and processing events. |
| trigger_application | string | The connector used for the recipe's trigger. |
| action_applications | array | List of connectors used in the recipe's actions. |
| created_at | string | Timestamp when the recipe was created. |
| updated_at | string | Timestamp when the recipe was last updated. |
| stopped_at | string | Timestamp when the recipe was last stopped. |
| stop_cause | string | Reason the recipe was stopped, if applicable. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-schema/workato-developer-api-recipe-schema.json",
"title": "Recipe",
"description": "A Workato recipe representing an automated workflow.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the recipe."
},
"name": {
"type": "string",
"description": "Display name of the recipe."
},
"description": {
"type": "string",
"description": "Human-readable description of what the recipe does."
},
"folder_id": {
"type": "integer",
"description": "ID of the folder containing this recipe."
},
"running": {
"type": "boolean",
"description": "Whether the recipe is currently active and processing events."
},
"trigger_application": {
"type": "string",
"description": "The connector used for the recipe's trigger."
},
"action_applications": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of connectors used in the recipe's actions."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the recipe was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the recipe was last updated."
},
"stopped_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the recipe was last stopped."
},
"stop_cause": {
"type": "string",
"description": "Reason the recipe was stopped, if applicable."
}
}
}