1. 代收模型
Merchant API Documentation
  • 引言
  • 签名算法
  • 信用测试卡
  • 开启正式模式
  • 本地付测试
  • 代付
    • 代付申请接口_ PAY_PAL
      POST
    • 代付申请接口_ ACH_DEBIT
      POST
    • 代付申请接口_CASHAPP
      POST
    • 检索代付交易接口
      GET
    • 代付取消申请接口
      POST
  • 客户
    • 创建客户
      POST
    • 更新客户
      PUT
    • 检索客户
      GET
    • 删除客户
      DELETE
    • 列出所有客户
      GET
  • 代收(收款)
    • 收银台
    • 本地支付(直连)
    • 信用卡支付(直连)【PCI】
    • Web SDK-V2
    • 检索代收交易接口
    • Google Pay SDK
  • 退款申请
    • 退款申请接口
    • 检索退款接口
  • 余额查询
    • 检索余额接口
  • 异步通知
    • 代收异步通知
    • 代付异步通知
  • 订阅
    • 创建订阅
    • 检索订阅
    • 取消订阅
  • 重复性支付
    • 首次重复性支付(直连)
    • 首次重复性支付【收银台】
    • 首次重复性支付【SDK】
    • 后续重复性支付
  • 数据模型
    • 代收模型
      • 信用卡信息
        • CARD
        • 设备信息
      • 代收请求体
      • 代收响应体
      • option配置项
      • option配置项
    • 资金模型
      • 资金响应体
    • 客户模型
      • 客户请求体
      • 客户响应体
      • 收货地址 shipping
      • 产品/服务信息 product
    • 退款模型
      • 退款请求体
      • 退款响应体
    • 代付模型
      • 代付请求体
      • 代付响应体
      • 代付取消请求体
    • 订阅模型
      • 订阅请求体
      • 订阅响应体
      • 订阅计划请求体
      • 订阅计划响应体
      • 其他订阅请求体
    • 响应体基本模型
    • 请求头
  1. 代收模型

代收请求体

{
    "payType": 1,
    "orderNo": "string",
    "currency": "str",
    "amount": 1,
    "returnUrl": "string",
    "notifyUrl": "string",
    "expiredTime": 7200,
    "clientIp": "string",
    "website": "https://example.com",
    "customerId": "string",
    "customer": {
        "firstname": "string",
        "lastname": "string",
        "email": "string",
        "phone": "string",
        "identityType": "CPF",
        "identityNo": "string",
        "country": "st",
        "state": "string",
        "city": "string",
        "address": "string",
        "zipcode": "string",
        "shipping": {
            "firstname": "string",
            "lastname": "string",
            "email": "string",
            "phone": "string",
            "country": "st",
            "state": "string",
            "city": "string",
            "address": "string",
            "zipcode": "string"
        }
    },
    "productId": "string",
    "product": [
        {
            "name": "string",
            "description": "string",
            "sku": "string",
            "quantity": "string",
            "price": "string",
            "url": "string"
        }
    ],
    "device": {
        "acceptLanguage": "string",
        "userAgent": "string",
        "javaEnabled": true,
        "javaScriptEnabled": true,
        "colorDepth": "string",
        "screenHeight": "string",
        "screenWidth": "string",
        "timeZoneOffset": "string"
    },
    "metadata": "string",
    "remark": "string",
    "paymentMethodTypes": [
        "string"
    ],
    "paymentMethod": "CARD",
    "paymentMethodData": {}
}
Built with