const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/calls/media/{recordId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/calls/media/{recordId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Was this page helpful?