Workflows
Learn how to build and manage workflows
Workflows
Workflows are the core building blocks of the Workflows API. A workflow defines a series of steps that execute in response to a trigger.
Workflow Structure
{
"name": "My Workflow",
"description": "Optional description",
"trigger": { "type": "api" },
"steps": [
{ "id": "step1", "type": "action", "..." }
]
}