v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBWorkflows API
Create a Workflow from Template
Use this endpoint to create a new workflow from a catalog template. The template parameters are validated against the template's JSON Schema. The new workflow is created in draft status.
post/v1/workflows/from-template
Request body
Example request
{
"templateId": "payment-validation",
"params": {
"executorId": "a1b2c3d4-e5f6-4789-a012-345678901234",
"currency": "USD"
}
}Response
Indicates that the resource was successfully created and the operation was completed as expected.
Example response
{
"createdAt": "2026-03-17T14:30:00Z",
"status": "draft",
"version": "1.0.0",
"workflowId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}