Merpay

Merpay 是 Mercari 旗下的移动支付服务。用户可使用 Merpay 余额、绑定账户或相关支付方式完成付款,常见于日本本地移动支付场景。


支付方式属性

字段名称内容
可用国家代码日本(JP)
消费者货币JPY
处理货币JPY
结算货币美元 (USD)
类型 I钱包 (wallet)
类型 IImerpayht
退款支持退款
拒付
集成类型异步

交易流程

  1. 消费者在商家的结账页面选择Merpay付款。
  2. 跳转支付信息页。
  3. 消费者进行付款。
  4. 消费者完成交易。
  5. 消费者被重定向对应页面。

集成

请求参数说明:

参数名类型必填说明
referenceString订单唯一标识
amountObject订单金额信息
├── currencyString货币类型(如 JPY)
├── valueNumber金额数值,单位为最小货币单位
productDetailString订单描述
countryCodeString国家代码(如 JP)
originString订单来源,如商城域名
paymentMethodObject支付方式信息
├── shopperEmailString付款人邮箱
├── typeString支付方式(如 merpayht)
├── holderNameString姓名
returnUrlString支付完成后返回的 URL
shopperReferenceString付款人唯一标识

交易调用输入示例

{
    "amount": {
        "currency": "JPY",
        "value": 1000
    },
    "countryCode": "JP",
    "origin": "fffmall.com",
    "paymentMethod": {
        "shopperEmail": "[email protected]",
        "holderName": "JW L",
        "type": "merpayht"
       
    },
    "productDetail": "ljwtest",
    "productName": "WEWQ",
    "reference": "ljw1769658309659",
    "returnUrl": "https://www.baidu.com/",
    "shopperReference": "LLL3211321",
    "webhookUrl": "https://develop.futureshop.global/api/checkout/payment/123"
}

响应参数说明

参数名类型必填说明
codeString响应状态码,"0" 表示成功
msgString响应消息
serverTimeNumber服务器时间戳,单位毫秒
dataObject业务数据对象
├── actionObject支付跳转相关信息
│ ├── paymentMethodTypeString支付方式类型(如 merpayht)
│ ├── urlStringWeb 端支付 URL
│ ├── methodString请求方法(如 Get)
│ ├── typeString操作类型(如 redirect)
├── amountObject订单金额信息
│ ├── currencyString货币类型(如 HKD, USD)
│ ├── valueNumber金额数值,单位为最小货币单位
├── merchantReferenceString商户订单号
├── pspReferenceString支付平台交易号
├── resultCodeString支付结果状态(如 PENDING)
successBoolean是否成功(true 表示成功)

交易调用输出示例

{
    "code": "0",
    "msg": "success",
    "serverTime": 1769667468756,
    "data": {
        "action": {
            "paymentMethodType": "merpayht",
            "url": "https://checkout-v2.futurepay-develop.com/instant-transfer?account=@CBB5CCZLV&expires=2026-01-29T06:22:44Z&reference=ljw1769666933255",
            "method": "Get",
            "type": "redirect"
        },
        "amount": {
            "currency": "JPY",
            "value": 1000
        },
        "merchantReference": "ljw1769666933255",
        "pspReference": "2016755419711668224",
        "resultCode": "PENDING",
        "providerReference": "mm_sU33jQHjcgCwDq"
    },
    "success": true
}

附加信息