Skip to main content

TripleA Integration

Introduction#

TripleA is licensed by MAS (The Monetary Authority of Singapore) and complies with the highest international standards for AML and KYC. Our documentation provides everything you need to start offering cryptocurrency-related services.

With cryptocurrency payments, customers simply send funds (eg. Bitcoin) from their computer or mobile device directly to a (unique one-time-use) payment address. TripleA guarantees your exchange rate and funds due.


Supported Countries#

  • Global ๐ŸŒ

Available Payment Methods#

TripleA PG only supports VND(โ‚ซ) currency.

Payment TypePayment Method KeyStatusSandbox Availability
Crypto WalletTRIPLEA_CRYPTOโœ…โœ…

Miscellaneous Details#

  • Refunds can be initialized from the merchant portal, for refund status please check the TripleA Dashboard

  • Please generate the access token using TripleA API, and it to the credentials. Below is the cURL for API request

    curl --request POST \
    --url https://api.triple-a.io/api/v2/oauth/token \
    --header 'Authorization: ' \
    --header 'Content-Type: application/x-www-form-urlencoded' \
    --data 'client_id=oacid-***********************' \
    --data 'client_secret=Qi42*********************' \
    --data grant_type=client_credentials
    Sample Response
    {
    "access_token": "1ba8*****************",
    "token_type": "bearer",
    "expires_in": 315359999
    }

Sandbox#

Credentials#

KeyValue
Access Token5e7ebfa8dd004dd1ee123730c16762ff0b1828da
Client Secret4d82a541985a6cd9667528ecc7aa4422c4190e65e8c0c7d46a86128aaf1c51d3
Merchant Keymkey-ckyb6fqms79hdrithexe2b181
ClientIdoacid-ckyb6fqn679herith1522fvh7

Testing data#

  • Follow the document to to download the testing app and add testBtc to your wallet. Then scan the QR code generated to complete the transfer.

Use following values in embedded JS code to pay via TripleA channel#

"pmt_channel": "TRIPLEA",
"pmt_method": "TRIPLEA_CRYPTO",

Reference links#