//native
type Telnyx = {
apiKey: string
}
/**
* Creates an External Connection
* Creates a new External Connection based on the parameters sent in the request. The external_sip_connection and outbound voice profile id are required. Once created, you can assign phone numbers to your application using the `/phone_numbers` endpoint.
*/
export async function main(
auth: Telnyx,
body: {
active?: false | true
external_sip_connection: 'zoom'
webhook_event_url?: string
webhook_event_failover_url?: string
webhook_timeout_secs?: number
inbound?: { channel_limit?: number }
outbound?: { channel_limit?: number; outbound_voice_profile_id?: string }
}
) {
const url = new URL(`https://api.telnyx.com/v2/external_connections`)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + auth.apiKey
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago