List scheduled events
GET/ai/assistants/:assistant_id/scheduled_events
Get scheduled events for an assistant with pagination and filtering
Request
Path Parameters
assistant_id Assistant Idrequired
Query Parameters
page[size] Page[Size]
Possible values: >= 1
and <= 100
Default value: 20
page[number] Page[Number]
Possible values: >= 1
Default value: 1
from_date date-time
to_date date-time
conversation_channel ConversationChannelType
Possible values: [phone_call
, sms_chat
]
Responses
200: Successful Response
- application/json
422: Validation Error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/ai/assistants/:assistant_id/scheduled_events' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"meta": {
"total_pages": 0,
"total_results": 0,
"page_number": 0,
"page_size": 0
},
"data": [
{},
{}
]
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}