Touch 'n Go eWallet
Touch ’n Go eWallet(简称 TNG eWallet 或 TNG)是马来西亚的电子钱包 / 移动支付平台。
| 属性 | 值 |
|---|---|
| 可用国家代码 | MY |
| 消费者货币 | MYR |
| 处理货币 | MYR |
| 结算货币 | USD |
| 类型 I | 电子钱包 (Wallet) |
| 类型 II | touchngo |
| 最低交易金额 | 1.00 MYR |
| 会话超时 | 5分钟 |
| 退款 | 不支持退款 |
| 集成类型 | 异步 |
交易流程
-
消费者在商家的结账页面选择 Touch 'n Go eWallet 选项。
-
消费者被重定向到 Future Pay 托管的支付页面。
-
消费者点击按钮后跳转到支付页面,在那里进行完成支付。
-
消费者完成交易。
-
消费者被重定向对应页面。
集成
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
reference | String | 是 | 订单唯一标识 |
amount | Object | 是 | 订单金额信息 |
├── currency | String | 是 | 货币类型(如 HKD, USD) |
├── value | Number | 是 | 金额数值,单位为最小货币单位 |
productDetail | String | 是 | 订单描述 如"TEST",值必须是字母或数字,超过30位字符会进行截取。 |
countryCode | String | 是 | 国家代码(如 TH, CN) |
origin | String | 是 | 订单来源,如商城域名 |
paymentMethod | Object | 是 | 支付方式信息 |
├── telephoneNumber | String | 是 | 付款人手机号 |
├── shopperEmail | String | 是 | 付款人邮箱 |
├── type | String | 是 | 支付方式(如 naverpay) |
returnUrl | String | 是 | 支付完成后返回的 URL |
shopperReference | String | 是 | 付款人唯一标识 |
| 字段名称 | 类型 | 必填 | 示例值 | 可选值 |
|---|---|---|---|---|
| productDetail | String | M | 如"TEST",值必须是字母或数字,超过30位字符会进行截取。 |
交易调用输入
{
"reference": "9B6F974D3DB8436AA2B139551933FF08",
"amount": {
"currency": "MYR",
"value": 100
},
"countryCode": "MY",
"origin": "fffmall.com",
"paymentMethod":{
"shopperEmail":"[email protected]",
"telephoneNumber":"603-21414552",
"type":"touchngo"
},
"productDetail": "test",
"returnUrl": "https://wallet.futurepay-develop.com/api/PayNotify/paymentSynchronous/business_merchant_id/1/order_id/2115",
"shopperReference": "FP3d9bcb7a0cf84b80bfc814e1cc43c613"
}交易调用输出
{
"code": "0",
"msg": "success",
"serverTime": 1728633576429,
"data": {
"action": {
"paymentMethodType": "touchngo",
"url": "https://r2.girogate.de/molpay/S1389/I?tx=2334590813&rs=ZMQklSaGdmdZw9NTiM16xen8591YbjuY&cs=e1f62ec550918e3471308d9e34a830e3d7f22dc40690616190a9c16d8f653049",
"method": "Get",
"type": "redirect"
},
"amount": {
"currency": "MYR",
"value": 100
},
"merchantReference": "9B6F974D3DB8436AA2B139551933FF08",
"pspReference": "1844649030089572352",
"resultCode": "PENDING"
},
"success": true
}Updated 15 days ago