Skip to main content
POST
Execute a Workflow

Autorizações

Authorization
string
header
obrigatório

JWT bearer token issued by the identity provider. Send it in the Authorization header as Bearer <token>.

Cabeçalhos

Idempotency-Key
string
obrigatório

Unique idempotency key to ensure safe retries of the same request.

Parâmetros de caminho

workflowId
string<uuid>
obrigatório

Unique identifier of the workflow.

Corpo

application/json

Request body containing the execution input data.

inputData
object
obrigatório

Input data passed to the workflow. Available to all nodes during execution. Maximum payload size is 1 MB.

Exemplo:

Resposta

Indicates that an identical request was already processed. Returns the original execution.

executionId
string<uuid>

Unique identifier of the execution.

Exemplo:

"f7e6d5c4-b3a2-1098-7654-321fedcba098"

startedAt
string<date-time>

Timestamp when the execution started.

Exemplo:

"2026-03-17T14:35:00Z"

status
string

Initial status of the execution (always pending).

Exemplo:

"running"

workflowId
string<uuid>

ID of the workflow being executed.

Exemplo:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"