Mastercard · Schema

AtmSearch

Atm Search Request Info

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
addressLine1 string Line 1 of the street address for the ATM location. Usually includes the street number and name. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must
addressLine2 string Line 2 of the street address usually an apartment number or suite number. This parameter is used rarely and is ignored if latitude and longitude are provided. If you provide this parameter you must al
city string The name of the city for a ATM location. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter.
countryCode string Any three character country code for an ATM location. Valid values are three digit alpha country codes. This parameter is ignored if latitude and longitude are provided. This parameter is required if
countrySubdivisionCode string The state or province for an ATM location (only supported for US and Canada locations). This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also pr
latitude string The latitude of a ATM location. If latitude is provided longitude must also be provided.
longitude string The longitude of a ATM location. If longitude is provided latitude must also be provided.
postalCode string The zip code or postal code for an ATM location. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter.
View JSON Schema on GitHub

JSON Schema

mastercard-atm-locations-atm-search-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AtmSearch",
  "type": "object",
  "description": "Atm Search Request Info",
  "properties": {
    "addressLine1": {
      "type": "string",
      "description": "Line 1 of the street address for the ATM location. Usually includes the street number and name. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter and either City parameter or PostalCode parameter."
    },
    "addressLine2": {
      "type": "string",
      "description": "Line 2 of the street address usually an apartment number or suite number. This parameter is used rarely and is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter and either City parameter or PostalCode parameter."
    },
    "city": {
      "type": "string",
      "description": "The name of the city for a ATM location. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter."
    },
    "countryCode": {
      "type": "string",
      "description": "Any three character country code for an ATM location. Valid values are three digit alpha country codes. This parameter is ignored if latitude and longitude are provided. This parameter is required if any other address information is provided including AddressLine1 AddressLine2 City PostalCode or CountrySubdivision."
    },
    "countrySubdivisionCode": {
      "type": "string",
      "description": "The state or province for an ATM location (only supported for US and Canada locations). This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter."
    },
    "latitude": {
      "type": "string",
      "description": "The latitude of a ATM location. If latitude is provided longitude must also be provided."
    },
    "longitude": {
      "type": "string",
      "description": "The longitude of a ATM location. If longitude is provided latitude must also be provided."
    },
    "postalCode": {
      "type": "string",
      "description": "The zip code or postal code for an ATM location. This parameter is ignored if latitude and longitude are provided. If you provide this parameter you must also provide the Country parameter."
    }
  }
}