cURL
curl --request GET \ --url https://sandbox.intermezzo.ai/germany/insurance-agencies \ --header 'Authorization: Bearer <token>'
{ "agencies": [ { "agencyCode": "12345678", "contributionRate": 1.2, "shortName": "TK" }, { "agencyCode": "87654321", "contributionRate": 1.5, "shortName": "AOK" } ] }
Get list of insurance agencies with their contribution rates
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Response wrapper for list of insurance agencies
Was this page helpful?