Skip to main content
Retrieve details of a specific execution.

POST /revisions/:id/data/query (Command: get_execution)

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be workflow_blobhub.
commandstringYesMust be get_execution.
execution_idstringYesThe ID of the execution.

Response

ParameterTypeDescription
executionobjectThe execution object.

Example

{
  "engine": "workflow_blobhub",
  "command": "get_execution",
  "execution_id": "exec_001"
}
{
  "execution": {
    "id": "exec_001",
    "status": "running"
  }
}