//native
type Telnyx = {
apiKey: string
}
/**
* Request recording for a call
* Starts recording with specified parameters for call idientified by call_sid.
*/
export async function main(
auth: Telnyx,
account_sid: string,
call_sid: string,
body: {
PlayBeep?: false | true
RecordingStatusCallbackEvent?: string
RecordingStatusCallback?: string
RecordingStatusCallbackMethod?: 'GET' | 'POST'
RecordingChannels?: 'single' | 'dual'
RecordingTrack?: 'inbound' | 'outbound' | 'both'
}
) {
const url = new URL(
`https://api.telnyx.com/v2/texml/Accounts/${account_sid}/Calls/${call_sid}/Recordings.json`
)
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