FuturePay 收单订单取消授权

该接口用于根据商户订单号或平台订单号查询收单订单状态。

1.请求地址(POST)

实时 API: https://api.futurepay.global/payin/cancelCapture

沙盒 API: https://api.futurepay-develop.com/payin/cancelCapture


2.请求参数(JSON 格式)

参数可以 二选一传入

参数名类型必填说明
merchantReferenceString商户订单号
pspReferenceStringFuturePay 平台订单号
{
  "merchantReference": "商户订单号(可选)",
  "pspReference": "平台订单号(可选)"
}

注意: merchantReference 和 pspReference 至少需传一个

3.响应参数(JSON格式)

顶层字段

参数名类型示例值描述
codeString"0"响应码,0 表示成功
msgString"success"响应消息
serverTimeLong1747904980771服务器时间戳(毫秒)
successBooleantrue请求是否成功
dataObject见下表订单数据对象

示例:

{
    "code": "0",
    "msg": "success",
    "serverTime": 1758274184686,
    "data": {
        "merchantReference": "ljw1758273978373",
        "pspReference": "1968969926530170880",
        "resultCode": "SUCCEED",
        "refusalReason": "SUCCEED"
    },
    "success": true
}