代收回调

JSON

POST merchant notify_url

Request Body

Name
Type
Description

code*

int

成功:200 失败:400

data*

Json

回调通知数据

message*

String

成功:SUCCESS 失败:FAILED

id*

String

平台订单编号id

merchant_id*

String

商户编号id

amount*

String

金额(分)

fee*

String

手续费(分)

sign*

String

验签值,只有data中的参数参与验签

order_id*

String

商户订单编号id

currency*

String

货币

operator_num

String

utr

回调数据示例

{
    "code": 200,
    "data": {
        "amount": "10000",
        "currency": "INR",
        "fee": "1650",
        "id": "15193373",
        "merchant_id": "202366100",
        "order_id": "202366100160100",
        "sign": "53B869E2135DCE2D01131342414356FA"
    },
    "message": "SUCCESS"
}

注意:处理完回调需返回字符串SUCCESS

Last updated