action loket_get_address_by_postal_code_and_house_number { label: "Acquire the address for a combination of `postalCode` and `houseNumber`" description: "__Activity name :__ GetAddressyByPostalCodeAndHouseNumber
Acquire the address for a combination of `postalCode` and `houseNumber`. Only Dutch addresses are supported. Both the postalCode and houseNumber have to be specified as query parameters to perform a succesful call to this endpoint. The city and street name returned by this endpoint are according to the nen standard
\n" provider: loket method: GET path: "/locationservices/address" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } houseNumber: { type: "integer" } postalCode: { type: "string" } } required: ["Accept", "Authorization", "houseNumber", "postalCode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }