代收提单

JSON

POST /api/order/pay/create

Request Body

Name
Type
Description

merchant_id*

String

商户编号id,联系运营人员获取

order_id*

String

商户订单号,订单唯一

pay_type*

String

默认:1

notify_url*

String

商户接受回调通知地址

return_url*

String

订单成功收银台跳转地址

sign*

String

验签值

amount*

Long

订单金额,单位(分)

currency*

String

USDT

name

String

姓名,建议真实

phone

String

邮箱,建议真实

email

String

手机号,建议真实

bank*

String

法币代码,例:USD、INR、BRL

bank_type

String

支付方式代码,详情见支付方式列表,例:10001 (信用卡)

{
    "code": 200,
    "data": {
        "amount": 10000,
        "fee": 1650,
        "id": 202366160,
        "merchant_id": "202366100",
        "order_id": "202366100160101",
        "pay_url": "https://***********"
    },
    "message": "SUCCESS"
}

Last updated