Broker Create Submission
POST
/api/v1/broker/submissions
const url = 'https://example.com/api/v1/broker/submissions';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"applicant":{"insured_name":"example","business_phone":"example","business_email":"example","website":"example","fein_or_ssn":"example","contact_first_name":"example","contact_last_name":"example","contact_title":"example","contact_phone":"example","contact_email":"example","mailing_address":{"line1":"example","city":"example","county":"example","state":"example","zip":"example","zip4":"example","line2":"example","country":"US"},"nature_of_business":"example","entity_type":"example","naics":"example","gl_code":"example","sic":"example","date_business_started":"2026-04-15"},"effective_date":"2026-04-15","lines_of_business":["example"],"property_tiv_total":1,"auto_vehicle_count":1,"wc_total_annual_payroll":1,"prior_carriers":[{"id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","coverage_category":"example","carrier_name":"example","loss_run_carrier_id":1,"policy_number":"example","effective_date":"2026-04-15","expiration_date":"2026-04-15"}],"narrative":"example","insured_id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","producer_email":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/broker/submissions \ --header 'Content-Type: application/json' \ --data '{ "applicant": { "insured_name": "example", "business_phone": "example", "business_email": "example", "website": "example", "fein_or_ssn": "example", "contact_first_name": "example", "contact_last_name": "example", "contact_title": "example", "contact_phone": "example", "contact_email": "example", "mailing_address": { "line1": "example", "city": "example", "county": "example", "state": "example", "zip": "example", "zip4": "example", "line2": "example", "country": "US" }, "nature_of_business": "example", "entity_type": "example", "naics": "example", "gl_code": "example", "sic": "example", "date_business_started": "2026-04-15" }, "effective_date": "2026-04-15", "lines_of_business": [ "example" ], "property_tiv_total": 1, "auto_vehicle_count": 1, "wc_total_annual_payroll": 1, "prior_carriers": [ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "coverage_category": "example", "carrier_name": "example", "loss_run_carrier_id": 1, "policy_number": "example", "effective_date": "2026-04-15", "expiration_date": "2026-04-15" } ], "narrative": "example", "insured_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "producer_email": "example" }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
BrokerSubmissionCreateRequest
Broker-built submission. The brokerage is taken from the token, never
from the client, there is no retail_brokerage_id field here on
purpose. narrative is the broker’s free-text description of the risk
(mirrors an inbound email body); it lands in the brief’s memory.
object
applicant
required
ApplicantCreate
object
insured_name
required
Insured Name
string
mailing_address
lines_of_business
Lines Of Business
Array<string>
prior_carriers
Prior Carriers
Array<object>
SubmissionPriorCarrierInputobject
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
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" } ]}