List a submission's documents
GET
/broker/submissions/{submission_id}/finalized-documents
const url = 'https://api.hedgespecialty.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/finalized-documents';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://api.hedgespecialty.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/finalized-documents \ --header 'Authorization: Bearer <token>'Finalized documents on file for one of your submissions: rendered
ACORDs, supplements, your own uploads, received documents. Each row
carries id, source, source_label, display_name, size_bytes,
content_type, created_at and a download_path for the PDF route
below. Proposal-surface documents (carrier quote PDFs, bind-wizard
uploads) are excluded.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”submission_id
required
string format: uuid
Responses
Section titled “Responses”Document list (empty for a submission that is not yours)