List all bot executor cron jobs
GET/v1/bot-executor-cron-jobs/
Returns a list of bot executor cron jobs. Can be filtered by bot_id
.
Request
Query Parameters
bot_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
bot_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",
"bot_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"status": "suspended",
"expression": "string",
"execution_stream_address": "string",
"created": "2024-01-02T07:21:22.165Z",
"modified": "2024-01-02T07:21:22.165Z"
}
]
}
Loading...