//native
type Telnyx = {
apiKey: string
}
/**
* Update a conference participant
* Updates a conference participant
*/
export async function main(
auth: Telnyx,
account_sid: string,
conference_sid: string,
call_sid: string,
body: {
Muted?: false | true
Hold?: false | true
HoldUrl?: string
HoldMethod?: 'GET' | 'POST'
AnnounceUrl?: string
AnnounceMethod?: 'GET' | 'POST'
WaitUrl?: string
BeepOnExit?: false | true
EndConferenceOnExit?: false | true
Coaching?: false | true
CallSidToCoach?: string
}
) {
const url = new URL(
`https://api.telnyx.com/v2/texml/Accounts/${account_sid}/Conferences/${conference_sid}/Participants/${call_sid}`
)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
Authorization: 'Bearer ' + auth.apiKey
},
body: new URLSearchParams(body as Record<string, string>)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago