支付信息

数据类型:Payment

字段类型含义建议备注
payment_idString支付流水号必须
methodString支付方式必须枚举值:
card:卡支付
ewallet:电子钱包
bank_transfer:银行转帐
cash_on_delivery:货到付款
bnpl:先买后付
other:其它
channelString支付渠道必须例如 worldpay、credorax、airwallex、apple_pay、checkout、ebanx、adyen、stripe、paypal、pacypay、alipay、wechat_pay、other
amountAmount支付金额必须
cardCard支付银行卡卡支付时必须
is_coupon_usedBoolean是否使用优惠券建议枚举值:
true:是
false:否
couponsArray使用的优惠券列表建议
Coupon优惠券建议
{
    "payment_id": "NHF8736274",
    "method": "card",
    "channel": "paypal",
    "amount": {
        "currency": "CNY",
        "amount_local": 68,
        "amount_usd": 10,
        "amount_cny": 68
    },
    "card": {
        "card_bin": "622207",
        "last_four_digits": "1234",
        "card_number_length": 16,
        "holder_name": {
            "first_name": "三",
            "middle_name": "",
            "last_name": "张",
            "nickname": "HZhang"
        },
        "debit_or_credit": "credit",
        "issuer_region": "CN",
        "expiration_date": "1998-01-01"
    },
    "is_coupon_used": true,
    "coupons": [
        {
            "coupon_id": "NOHF08938",
            "coupon_name": "双十一限时购",
            "coupon_count": 1,
            "begin_time": 1596358039000,
            "expire_time": 1616358039000,
            "coupon_type": "discount",
            "coupon_rate": 0.85,
            "coupon_threshold": "10",
            "cash_back_amount": {
                "currency": "CNY",
                "amount_local": 6.8,
                "amount_usd": 1,
                "amount_cny": 6.8
            }
        }
    ]
}