//native
type Telnyx = {
apiKey: string
}
/**
* Update an External Connection
* Updates settings of an existing External Connection based on the parameters of the request.
*/
export async function main(
auth: Telnyx,
id: string,
body: {
active?: false | true
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/${id}`)
const response = await fetch(url, {
method: 'PATCH',
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