Skip to main content
DELETE
/
ai
/
assistants
/
{assistant_id}
/
scheduled_events
/
{event_id}
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const scheduledEvent = await client.ai.assistants.scheduledEvents.delete('event_id', {
  assistant_id: 'assistant_id',
});

console.log(scheduledEvent);
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

assistant_id
string
required
event_id
string
required

Response

Successful Response

The response is of type any.