Retrieve the binary content of a file
- Sandbox APIhttps://api-sandbox.lawvu.com/v2/files/{fileId}/content
- Production APIhttps://api.lawvu.com/v2/files/{fileId}/content
const fileId = '9456';
const resp = await fetch(
`https://api-sandbox.lawvu.com/v2/files/${fileId}/content`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);