Skip to main content
GET
/
v1
/
executions
/
{id}
/
results
Get Execution Results
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/executions/{id}/results \
  --header 'X-API-Key: <api-key>'
{
  "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"
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Path Parameters

id
string<uuid>
required

Unique identifier of the execution.

Response

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

completedAt
string<date-time>

Timestamp when the execution finished.

Example:

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

executionId
string<uuid>

Unique identifier of the execution.

Example:

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

finalOutput
object

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

Example:
{
"workflow": {
"transactionId": "txn-98765",
"amount": 1500,
"currency": "BRL",
"customerId": "cust-12345",
"message": "Payment received"
}
}
startedAt
string<date-time>

Timestamp when the execution started.

Example:

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

status
string

Final status of the execution.

Example:

"completed"

stepResults
object[]

Ordered list of results for each step executed.

workflowId
string<uuid>

ID of the workflow that was executed.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"