Workflow

A workflow run represents an execution instance of a workflow. It contains the execution history, status, and any errors that occurred during the run.

List workflows

get

Returns a list of workflows for the organisation, ordered by creation date with the most recent first.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Query parameters
pageintegerOptional

The collection page number

Default: 1
Responses
200

Workflow collection

get
/workflows

Retrieve a workflow

get

Retrieve details of a specific workflow by its ID.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Path parameters
idstringRequired

Workflow identifier

Responses
200

Workflow resource

get
/workflows/{id}

Delete a workflow

delete

Delete a workflow and all its associated data. This action cannot be undone.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Path parameters
idstringRequired

Workflow identifier

Responses
delete
/workflows/{id}

No content

List workflow runs for a specific workflow

get

Returns a list of workflow run executions for a specific workflow, ordered by creation date with the most recent first.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Path parameters
workflowIdstringRequired

WorkflowRun identifier

Query parameters
pageintegerOptional

The collection page number

Default: 1
Responses
200

WorkflowRun collection

get
/workflows/{workflowId}/runs

Retrieve a workflow run

get

Retrieve details of a specific workflow run execution by its ID, including execution history and status.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Path parameters
workflowIdstringRequired

WorkflowRun identifier

idstringRequired

WorkflowRun identifier

Responses
200

WorkflowRun resource

get
/workflows/{workflowId}/runs/{id}

Last updated