Skip to main content
GET
/
v1
/
beneficiaries
/
paymentmethods
List Payment Methods
curl --request GET \
  --url https://api-sandbox.uqpaytech.com/api/v1/beneficiaries/paymentmethods \
  --header 'x-auth-token: <api-key>'
{
  "data": [
    {
      "country": "SG",
      "currency": "USD",
      "clearing_systems": "SWIFT",
      "payment_method": "LOCAL"
    }
  ]
}

Authorizations

x-auth-token
string
header
required

The API token for login provided by UQPay.

Query Parameters

currency
string
required

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

Example:

"USD"

country
string
required

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

Example:

"SG"

Response

OK - Successfully retrieved a list of payment methods.

data
object[]