get_container_file_content
GET
/v1/containers/{container_id}/files/{file_id}/content
const url = 'https://example.com/v1/containers/example/files/example/content';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/containers/example/files/example/contentParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” container_id
required
string
Container ID
file_id
required
string
File ID
Responses
Section titled “ Responses ”Raw file bytes with the file’s MIME type
File not found or expired
File body was elided and is no longer fetchable