GET
/
germany
/
insurance-agencies
List Insurance Agencies
curl --request GET \
  --url https://api.example.com/germany/insurance-agencies \
  --header 'Authorization: Bearer <token>'
{
  "agencies": [
    {
      "agencyId": "<string>",
      "shortName": "<string>",
      "contributionRate": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Response wrapper for list of insurance agencies

agencies
InsuranceAgencyResponse · object[]
required