cURL
curl --request GET \ --url https://api.example.com/germany/insurance-agencies \ --header 'Authorization: Bearer <token>'
{ "agencies": [ { "agencyId": "<string>", "shortName": "<string>", "contributionRate": "<string>" } ] }
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
Show child attributes