Partner - Car Insurance

Introduction

Get offers and quote for partner car insurance.

The content on this Developer Portal are provided as examples of "how to use" the APIs.

We strive to keep the examples up to date, but the APIs themselves represent the "truth".

For the technical details pleasy try out the actual APIs in the "swagger UI" browser client (in the API area) or via the Postman Collections.

Process

Picture

Get Products

 A list of all partner car insurance products available for the Developer.

Request

GET /products 
Host: https://preprod-api.almbrand.dk
Content-Type: application/json
Accept-Language: da-DK
Authorization: Bearer {{access_token}}
ocp-apim-subscription-key: {{subcription_key}}

Response

HTTP/1.1 200 OK
Content-Type: application/json

{
"elements": [
{
"product_name": "insurance-car-leasing",
      "title": "Bilforsikring (Leasing)",
"parameters": {...},
"features": {...},
"sub_features": {...}
},
{
"product_name": "insurance-car-finance",
      "title": "Bilforsikring (Finansiering)"
"parameters": {...},
"features": {...},
"sub_features": {...}
},
{
"product_name": "insurance-car-standalone",
      "title": "Bilforsikring (Enkeltstående)"
"parameters": {...},
"features": {...},
"sub_features": {...}
}
]
}