FlowDrop Docs
API referenceAgent spec

Get Agent Spec execution status

Retrieve the current status and per-node execution info for a running or completed Agent Spec execution.

GET
/agentspec/executions/{id}

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Path Parameters

id*string

Execution ID from the runtime

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/agentspec/executions/string"
{  "execution_id": "string",  "status": "running",  "execution_status": "string",  "node_statuses": {    "property1": {      "status": "idle",      "state": "string",      "execution_count": 0,      "started_at": "2019-08-24T14:15:22Z",      "duration_ms": 0,      "error": "string"    },    "property2": {      "status": "idle",      "state": "string",      "execution_count": 0,      "started_at": "2019-08-24T14:15:22Z",      "duration_ms": 0,      "error": "string"    }  },  "nodes": {    "property1": {      "status": "idle",      "state": "string",      "execution_count": 0,      "started_at": "2019-08-24T14:15:22Z",      "duration_ms": 0,      "error": "string"    },    "property2": {      "status": "idle",      "state": "string",      "execution_count": 0,      "started_at": "2019-08-24T14:15:22Z",      "duration_ms": 0,      "error": "string"    }  },  "error": "string",  "message": "string"}