//native
type Telnyx = {
apiKey: string
}
/**
* Start streaming media from a call.
* Starts streaming media from a call to a specific WebSocket address.
*/
export async function main(
auth: Telnyx,
account_sid: string,
call_sid: string,
body: {
StatusCallback?: string
StatusCallbackMethod?: 'GET' | 'POST'
Track?: 'inbound_track' | 'outbound_track' | 'both_tracks'
Name?: string
BidirectionalMode?: 'mp3' | 'rtp'
BidirectionalCodec?: 'PCMU' | 'PCMA' | 'G722'
Url?: string
}
) {
const url = new URL(
`https://api.telnyx.com/v2/texml/Accounts/${account_sid}/Calls/${call_sid}/Streams.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