Get one submission (status, markets, documents)
GET
/broker/submissions/{submission_id}
const url = 'https://api.hedgespecialty.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';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 \ --header 'Authorization: Bearer <token>'The submission header (id, insured_name, lines, state, status_label, premium, primary_state, effective_date, created_at, updated_at) plus the live marketing roll-up:
markets: one entry per engaged carrier with per-line rows (line, status, status_label, quote premium in cents and dollars, last update, decline/withdrawal notes).status_summary: counts by status and per-line quoted/total progress.documents: finalized documents on file, each with adownload_pathyou can GET with the same bearer token.bor_actions: Broker of Record workstreams, empty for most submissions.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”submission_id
required
string format: uuid
Responses
Section titled “Responses”Submission detail with marketing roll-up
Not found (or not your brokerage’s)