List all agent executor cron jobs
GET/v1/agent-executor-cron-jobs/
Returns a list of agent executor cron jobs. Can be filtered by agent_id
.
Request
Query Parameters
agent_id uuid
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
suspended
- Suspendedrunning
- Running]
total_count integer
current_page integer
next urinullable
previous urinullable
results
object[]
id uuidrequired
agent_id uuidrequired
name stringrequired
status stringrequired
Possible values: [suspended
, running
]
expression stringrequired
execution_stream_address stringrequired
created date-timerequired
modified date-timerequired
{
"total_count": 123,
"current_page": 1,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"status": "suspended",
"expression": "string",
"execution_stream_address": "string",
"created": "2024-12-28T11:16:10.043Z",
"modified": "2024-12-28T11:16:10.043Z"
}
]
}
Loading...