GET
/
germany
/
healthagencies
List Health Agencies
curl --request GET \
  --url https://sandbox.intermezzo.ai/germany/healthagencies \
  --header 'Authorization: Bearer <token>'
[
  {
    "agency": {
      "additionalContributionRate": "0.0270",
      "agencyCode": "AOK01",
      "agencyId": 123,
      "bankName": "Deutsche Bank",
      "bic": "COBADEFFXXX",
      "creditorId": "DE98ZZZ09999999999",
      "fundType": "AOK",
      "iban": "DE89370400440532013000",
      "shortName": "AOK Bayern"
    },
    "umlage": [
      {
        "contributionRate": "0.024",
        "levyType": "U1",
        "reimbursementRate": 70
      },
      {
        "contributionRate": "0.0044",
        "levyType": "U2",
        "reimbursementRate": 100
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

agencyId
integer | null

Filter by agency ID

agencyCode
string | null

Filter by agency code

fundType
string | null

Filter by fund type

Response

200
application/json

Successful Response

The response is of type HealthAgenciesResponse · object[].