partner-api
Create a quote
Submit a quote for a partner lead. Requires can_create_quotes = true on the partner record.
post/api/partner/quotes
Request body
Example request
{
"annual_premium": 12500,
"carrier_name": "Coface",
"commission_rate": 15,
"coverage_type": [
"Cyber",
"D&O",
"Credit Insurance"
],
"currency": "USD",
"effective_date": "2026-08-01",
"expiration_date": "2027-08-01",
"lead_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"policy_limit": 1000000,
"quote_number": "COF-2026-98765",
"term": "annual"
}Response
Successful Response
Example response
{
"success": true,
"data": {
"quote_id": "9f8e7d6c-aaaa-bbbb-cccc-ddddeeeeffff",
"lead_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"carrier_name": "Coface",
"coverage_type": "Credit Insurance",
"annual_premium": 12500,
"status": "Sent",
"created_at": "2026-06-12T11:30:00Z"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.