List your brokerage's submissions
GET
/broker/submissions
const url = 'https://api.hedgespecialty.com/api/v1/broker/submissions?status=intake&offset=0';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?status=intake&offset=0' \ --header 'Authorization: Bearer <token>'Newest first. All filters are optional; a bare call returns the full book.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”status
string
Exact submission state. Unknown values return 422 with the valid list.
search
string
Case-insensitive match on the insured name (literal, wildcards are escaped).
limit
integer
Max rows to return. Unbounded when omitted.
offset
integer
Rows to skip, for paging with limit.
updated_since
string format: date-time
Only submissions updated at or after this timestamp (delta sync).
Responses
Section titled “Responses”Submission list
Invalid filter (e.g. limit over 500)