//native
type Telnyx = {
apiKey: string
}
/**
* Update a authentication provider
* Updates settings of an existing authentication provider.
*/
export async function main(
auth: Telnyx,
id: string,
body: {
name?: string
short_name?: string
active?: false | true
settings?: {
idp_entity_id: string
idp_sso_target_url: string
idp_cert_fingerprint: string
idp_cert_fingerprint_algorithm?: 'sha1' | 'sha256' | 'sha384' | 'sha512'
}
settings_url?: string
}
) {
const url = new URL(`https://api.telnyx.com/v2/authentication_providers/${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