action hsbc_get_x_open_banking_v2_2_atms_geo_location_lat_latitude_long_long { label: "get_x_open_banking_v2_2_atms_geo_location_lat_latitude_long_longitude" description: "This extended API will data about all ATMs within a specified radius (1 to 10 miles) of the specified latitude and longitude. It is based-on the Open Banking standards as defined by the Open Banking Implementation Entity (OBIE) in data dictionary version 2.2. The extended functionality may not fully adhere to the non-functional requirements of the regulator. Data is only available for the United Kingdom." provider: hsbc method: GET path: "/x-open-banking/v2.2/atms/geo-location/lat/{latitude}/long/{longitude}" encoding: json input: { type: "object" properties: { latitude: { type: "string" } longitude: { type: "string" } radius: { type: "string" } } required: ["latitude", "longitude", "radius"] additionalProperties: false } output: { type: "object" additionalProperties: true } }