v1

latestOpenAPI 3.0.22026-07-26123510445.2 KB
Beneficiaries

List Payment Methods

This endpoint returns a list of payment methods.

get/v1/beneficiaries/paymentmethods

Query parameters

currencystring required
Example:USD

Currency of the beneficiary.Three-letter ISO 4217 currency code.

countrystring required
Example:SG

Two-letter country code ISO 3166-1 alpha-2.

Response

OK - Successfully retrieved a list of payment methods.

Example response

{
  "data": [
    {
      "card": {
        "card_name": "john doe",
        "card_number": "541333******4047",
        "brand": "visa",
        "bin": "541333",
        "last4": "4047",
        "expiry_month": "12",
        "expiry_year": "2027",
        "billing": {
          "first_name": "John",
          "last_name": "Doe",
          "email": "john.doe@example.com",
          "phone_number": "12025550123",
          "address": {
            "country_code": "SG",
            "city": "Singapore",
            "street": "444 Orchard Rd, Midpoint Orchard, Singapore ",
            "postcode": "924011"
          }
        }
      }
    }
  ]
}