List all agent executor jobs
GET/v1/agent-executor-jobs/
Returns a list of agent executor jobs. Can be filtered by agent_id
.
Request
Query Parameters
agent_id uuid
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
next stringnullable
previous stringnullable
results
object[]
id uuidrequired
agent_id uuidrequired
execution_address stringrequired
created date-timerequired
{
"next": "string",
"previous": "string",
"results": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"execution_address": "string",
"created": "2024-12-13T08:33:24.924Z"
}
]
}
Loading...