v1

latestOpenAPI 3.0.1Apache 2.02026-07-248286406.8 KB
Payin Catalog

Gets a list of countries where payins services offered.

This GET endpoint is used to retrieve a list of all currently available countries of payins service. <br> You can use this endpoint to obtain a list of countries where MassPay services are offered. <br> There are no required parameters for this endpoint. <br> The response will include a JSON array containing details for each country, including the country code, name, and three_letter_code.

get/payin/country/list

Response

Successful operation.

codestring required

Country code ISO_3166

namestring required

Name of country

three_letter_codestring required

The user's country code. ISO_3166-1_alpha-3 code

iso_numericinteger required

ISO 3166-1 numeric country code, returned as an integer without leading zeros (e.g., 8 for Albania, not "008")

generic_optionsstring[] required

List of generic option services that are available in this country. Empty if no generic payers are available.

Example response

[
  {
    "code": "MX",
    "name": "Mexico",
    "three_letter_code": "MEX",
    "iso_numeric": 484,
    "generic_options": [
      "LOCAL_BANK_DEPOSIT"
    ]
  }
]