List all executions
GET/v1/executions/
Returns a list of executions. Can be filtered by agent_id
and agent_executor_job_id
.
Request
Query Parameters
agent_executor_job_id uuid
agent_id uuid
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
success
- Successin_progress
- In Progressfailure
- Failuretermination
- Termination]
next stringnullable
previous stringnullable
results
object[]
id uuidrequired
agent_id uuidrequired
agent_executor_job_id uuidnullablerequired
status stringrequired
Possible values: [success
, in_progress
, failure
, termination
]
start date-timerequired
finish date-timenullablerequired
logs
object
required
return_value
object
nullable
required
{
"next": "string",
"previous": "string",
"results": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"agent_executor_job_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "success",
"start": "2024-12-13T08:33:24.940Z",
"finish": "2024-12-13T08:33:24.940Z",
"logs": {},
"return_value": {}
}
]
}
Loading...