GET
/
workflow
/
schedule
/
{workflow_run_id}
curl --request GET \
  --url https://{api-address}.org.machina.gg/workflow/schedule/{workflow_run_id} \
  --header 'x-api-token: <api-key>'
{
  "data": {
    "_id": "<string>",
    "workflow_id": "<string>",
    "workflow_name": "<string>",
    "status": "executed",
    "created": "<string>",
    "executed": "<string>",
    "result": {},
    "input": {}
  },
  "totals": {
    "total_documents": 123
  },
  "status": true
}

Authorizations

x-api-token
string
header
required

API key authentication

Path Parameters

workflow_run_id
string
required

Unique run ID of the scheduled workflow execution

Response

200
application/json
Workflow schedule details
data
object
totals
object
status
boolean

Operation status