Broker Get Submission
GET
/api/v1/broker/submissions/{submission_id}
const url = 'https://example.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';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/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”submission_id
required
Submission Id
string format: uuid
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
BrokerSubmissionDetail
object
id
required
Id
string format: uuid
lines
Lines
Array<string>
status_label
required
Status Label
string
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
bor_actions
Bor Actions
Array<object>
BrokerBorActionOne Broker-of-Record workstream on the submission, broker-facing.
Rendered as the “BOR needed” card: a carrier told us another broker
already holds the account, and (when bor_viable) a signed letter
from the insured, produced on the retail side, never by Hedge -
unblocks it. Naming the carrier here is deliberate: the insured has
to sign a letter naming that carrier, so anonymized market language
is useless to the broker.
object
id
required
Id
string format: uuid
status
required
Status
string
carrier_name
required
Carrier Name
string
lob_slugs
Lob Slugs
Array<string>
bor_viable
Bor Viable
boolean
insured_letterhead
Insured Letterhead
boolean
reference_policy_number
Reference Policy Number
boolean
created_at
required
Created At
string format: date-time
Example
{ "bor_actions": [ { "bor_viable": true, "insured_letterhead": false, "reference_policy_number": false } ]}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}