Get insurance company parameters
Get a list of included parameters for a specified insurance at a specific insurance company. Typical use case is wanting to compare insurance content between a collected insurance and an alternative.
Request
Header Parameters
sv, en, no, da, et, fr, de, lv, lt or ru.Specifies the API version to use. Must match the version of the endpoint you are targeting.
2021-01-01.Request Body
Insurance company that this collection is from
Name of the insurance to get parameters for
Insurance sub type to get parameters for
Insurance type to get parameters for
Responses
Insurance parameters successfully fetched.
Body
The value has been changed to true because the collected insurance has the addon.
Description of the parameter in the local language.
Display name for the parameter presented in the local language.
The group the parameter belongs to.
The display order of the parameter group.
The name of the parameter as returned for a specific insurance. In english.
The display order of the parameter within the parameter group.
Potential values are true (parameter included in insurance coverage), false (parameter not included in insurance coverage) or possible (parameter could be included in coverage but we are unable to determine for certain)
curl https://api.insurely.com/insurance-collection/get-parameters \
-H "client-id: <client-id>" \
-H "Content-Type: application/json" \
-d '{
"insuranceCompany": "se-agria",
"insuranceName": "Halvförsäkring",
"insuranceSubType": "carInsurance",
"insuranceType": "vehicleInsurance"
}' \
-X POST