Skip to main content
GET
/
v1
/
workflows
/
{id}
/
executions
List executions for a workflow
curl --request GET \
  --url https://api.beltic.com/v1/workflows/{id}/executions \
  --header 'Authorization: Bearer <token>'
[
  {
    "executionId": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "result": {}
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.beltic.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Beltic-issued JWT bearer token.

Path Parameters

id
string
required

Workflow ID.

Response

List of executions for the workflow.

executionId
string
required
status
enum<string>
required

Terminal or paused status of a workflow execution.

Available options:
completed,
failed,
paused,
cancelled
updatedAt
string<date-time>
required
result
object

Execution result payload, when available.