//native
type Telnyx = {
apiKey: string
}
/**
* Update a Fax Application
* Updates settings of an existing Fax Application based on the parameters of the request.
*/
export async function main(
auth: Telnyx,
id: string,
body: {
application_name: string
active?: false | true
anchorsite_override?:
| 'Latency'
| 'Chicago, IL'
| 'Ashburn, VA'
| 'San Jose, CA'
| 'Sydney, Australia'
| 'Amsterdam, Netherlands'
| 'London, UK'
| 'Toronto, Canada'
| 'Vancouver, Canada'
| 'Frankfurt, Germany'
webhook_event_url: string
webhook_event_failover_url?: string
webhook_timeout_secs?: number
fax_email_recipient?: string
inbound?: {
channel_limit?: number
sip_subdomain?: string
sip_subdomain_receive_settings?: 'only_my_connections' | 'from_anyone'
}
outbound?: { channel_limit?: number; outbound_voice_profile_id?: string }
}
) {
const url = new URL(`https://api.telnyx.com/v2/fax_applications/${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