WiPay
WAPIsv2.0.2Transactions

Get Transaction Metadata

Retrieve supported currencies, environments, fee structures, and transaction amount limits.

GET
/transactions/meta
AuthorizationBearer <token>

OAuth2 access token obtained from POST /auth/tokens.

In: header

Response Body

curl -X GET "https://tt.wipayfinancial.com/wapi/transactions/meta"
{
  "message": "OK",
  "data": {
    "currencies": [
      "TTD",
      "USD"
    ],
    "environments": [
      "live",
      "sandbox"
    ],
    "fee_structures": [
      "customer_pay",
      "merchant_absorb",
      "split"
    ],
    "totals": {
      "TTD": {
        "minimum": 5,
        "maximum": 20400
      },
      "USD": {
        "minimum": 0.74,
        "maximum": 3000
      }
    }
  }
}