import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const scheduledEventListResponse of client.ai.assistants.scheduledEvents.list(
'assistant_id',
)) {
console.log(scheduledEventListResponse);
}
Get scheduled events for an assistant with pagination and filtering
GET
/
ai
/
assistants
/
{assistant_id}
/
scheduled_events
JavaScript
Copy
Ask AI
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const scheduledEventListResponse of client.ai.assistants.scheduledEvents.list(
'assistant_id',
)) {
console.log(scheduledEventListResponse);
}