Workflow Template
Get Workflow Template by UUID
Retrieve detailed information about a specific workflow template by its UUID, including all workflow steps
POST
Retrieve detailed information about a specific workflow template by its UUID, including all configured workflow steps, execution conditions, and webhook configurations.
Base URL
All API requests should be made to:Example request
Request body
Example response
Response fields
Root fields
Data object
Workflow step object
Execution condition object
Webhook object
Understanding the Response
Workflow Steps Order
Steps are returned in the order defined by theirindex field:
- Index 0: First step to execute
- Index 1: Second step to execute
- And so on…
Execution Conditions
Each step can have multiple execution conditions. All conditions must evaluate totrue for the step to execute:
- Empty array: Step always executes (no conditions)
- Multiple conditions: All must be met (AND logic)
Template Variables
The response shows template variables used in webhook configurations:{{ #key }}: System secret from vault{{ step.response.key }}: Variable from previous step response{{ initial.key }}: Variable from initial workflow input
Human Approval
Whenhuman_approval_required is true, the workflow pauses at that step and waits for manual approval before continuing.
Related Documentation
- Workflow Template Overview - Learn about workflow templates, execution modes, and features
- Add Workflow Step - Add a new step to a workflow
- Add Workflow Template - Create a new workflow template
Authorizations
API key for authentication. Get this from your dashboard by selecting a brand and going to API Keys section.
Brand UUID for authentication. Get this from your dashboard after adding a brand - it will be displayed in the UI.
Body
application/json
Workflow template UUID
UUID of the workflow template

