Get Currency List

POST

api/v2/currency_list



Parameters that need to be pass for the request.

Parameters Type Required Description
project_id string yes Project ID
token string yes Token details view Encryption & Decryption
transaction_type string yes TOPUP/PAYOUT/SETTLEMENT

Parameters

  • project_id: GAT62f22822858df (string, required) - Project ID
  • token: 0F22AF4C8E69E95B835D17FF40ECACC3 (string, required) - Token
  • transaction_type: TOPUP (string, required) - TOPUP/PAYOUT/SETTLEMENT


Response 200 (application/json)

  
                    {
                        "status": 0,
                        "ret_msg": "Success",
                        "data": {
                            "currency_list": [
                                {
                                    "exchange_rate": "24781.8632",
                                    "currency_name": "US Dollar",
                                    "currency_short_code": "USD"
                                },
                                {
                                    "exchange_rate": 1,
                                    "currency_name": "Dong",
                                    "currency_short_code": "VND"
                                }
                            ],
                            "transaction_type": "TOPUP",
                            "token": "522C93EEA40FCAC79DFF4C44A59B4980"
                        }
                    }