List all bot builder jobs
GET/v1/bot-builder-jobs/
Returns a list of bot builder jobs. Can be filtered by bot_id
.
Request
Query Parameters
bot_id uuid
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
total_count integer
current_page integer
next urinullable
previous urinullable
results
object[]
id uuidrequired
bot_id uuidrequired
created 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",
"created": "2024-01-02T07:21:22.163Z"
}
]
}
Loading...