Retrieve a quote
Retrieves the details of a previously created quote. Supply the unique quote ID that was returned from your previous request, and 1099Policy will return the corresponding quote information.
Path parameters
-
The ID of the desired quote (e.g.,
qt_5DciVga8Kt
).
GET /api/v1/quotes/{quote_id}
curl \
-X GET https://api.1099policy.com/api/v1/quotes/{quote_id}
Response examples (200)
{
"contractor": "cn_Ehb3bYa",
"coverage_type": {
"coverage_type": [
"general",
"workers-comp"
]
},
"created": 1646818364,
"effective_date": 1646818364,
"eligible": true,
"end_date": 1678334737,
"gl_net_rate": 20,
"id": "qt_5DciVga8Kt",
"job": "jb_jsb9KEcTpc",
"net_rate": 65,
"quote_json": {
"gl": {
"net_rate": 20,
"stamping_fee": null,
"risk_purchasing_group_fee": null
},
"wc": {
"net_rate": 45
}
},
"wc_net_rate": 45
}