Download a file from CDN
curl --request GET \
--url https://v2.stopbars.com/cdn/files/{fileKey}import requests
url = "https://v2.stopbars.com/cdn/files/{fileKey}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/cdn/files/{fileKey}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CDN
Download a file from CDN
GET
/
cdn
/
files
/
{fileKey}
Download a file from CDN
curl --request GET \
--url https://v2.stopbars.com/cdn/files/{fileKey}import requests
url = "https://v2.stopbars.com/cdn/files/{fileKey}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/cdn/files/{fileKey}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Path Parameters
Response
File stream
Was this page helpful?
