VA收款银行

概述


VA开户银行是为受益人提供账户服务、接收并入账付款资金的银行机构,是资金最终入账的核心节点,承担资金接收、清算入账及合规审查等关键职能,会直接影响交易的安全性、合规性和到账效率。

Endpoint

Sandbox

POST https://preapi.futurepay-develop.com/api/v1/reference/va-support-bank-list

Production

POST https://api.futurepay.global/api/v1/reference/va-support-bank-list

Request Parameters

ParameterRequiredTypeDescription
businessTypeIdYesstringBusiness type ID
currencyYesstringCollection currency
countryCodeYesstringISO 3166-1 Alpha-2 country code
paymentTypeYesstringCollection method (LOCALSWIFT)

Request Example

{
  "businessTypeId": "184",
  "currency": "NGN",
  "countryCode": "NG",
  "paymentType": "LOCAL"
}

Response

FieldTypeDescription
bankIdstringBank ID
bankNamestringBank name
bankCountrystringBank country
currenciesarraySupported collection currencies

Response Example

{
  "code": "0",
  "msg": "succeeded",
  "serverTime": 1761803559948,
  "success": true,
  "data": [
    {
      "bankId": "10",
      "bankName": "Paga",
      "bankCountry": "NG",
      "currencies": [
        "NGN"
      ]
    },
    {
      "bankId": "12",
      "bankName": "Bank of Nigeria",
      "bankCountry": "NG",
      "currencies": [
        "NGN"
      ]
    }
  ]
}


Did this page help you?