v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Executions API

Get Execution Results

Use this endpoint to retrieve the results of a completed workflow execution. The execution must be in a terminal state.

get/v1/executions/{id}/results

Path parameters

idstring uuid required

Unique identifier of the execution.

Response

Indicates that the request was successful and the response contains the requested data.

completedAtstring date-time

Timestamp when the execution finished.

executionIdstring uuid

Unique identifier of the execution.

finalOutputobject

Aggregated output from the last step or the workflow's final result.

startedAtstring date-time

Timestamp when the execution started.

statusstring

Final status of the execution.

workflowIdstring uuid

ID of the workflow that was executed.

Example response

{
  "executionId": "f7e6d5c4-b3a2-1098-7654-321fedcba098",
  "workflowId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "completed",
  "stepResults": [
    {
      "stepNumber": 1,
      "stepName": "action_log-event",
      "nodeId": "log-event",
      "status": "completed",
      "output": {
        "action": "log"
      },
      "executedAt": "2026-03-17T14:35:00Z",
      "durationMs": 0
    }
  ],
  "finalOutput": {
    "workflow": {
      "transactionId": "txn-98765",
      "amount": 1500,
      "currency": "BRL",
      "customerId": "cust-12345",
      "message": "Payment received"
    }
  },
  "startedAt": "2026-03-17T14:35:00Z",
  "completedAt": "2026-03-17T14:35:00Z"
}