REST API client for the jambonz platform. Provides typed methods for creating and managing calls, conferences, and queues.
const client = new JambonzClient({ baseUrl: 'https://api.jambonz.us', accountSid, apiKey });const callSid = await client.calls.create({ from: '+15085551212', to: { type: 'phone', number: '+15085551213' } }); Copy
const client = new JambonzClient({ baseUrl: 'https://api.jambonz.us', accountSid, apiKey });const callSid = await client.calls.create({ from: '+15085551212', to: { type: 'phone', number: '+15085551213' } });
API connection options (baseUrl, accountSid, apiKey).
Readonly
Active call management (create, list, update, redirect, mute, whisper, hangup).
Active conference listing.
Active queue listing.
REST API client for the jambonz platform. Provides typed methods for creating and managing calls, conferences, and queues.
Example