POST SharePay/ShareRefundQuery

分账回退查询。

请求信息

请求URI参数

请求数据参数

ShareRefundQueryInfo
名称说明类型扩展说明
store_no

门店编码.

字符串

必填

字符长度: 必须在 1 和 32 之间

order_no

商户分账单号

字符串

必填

字符长度: 必须在 1 和 32 之间

refund_no

要分账完结的交易流水号

字符串

请求数据格式

application/json, text/json

例子:
{
  "store_no": "sample string 1",
  "order_no": "sample string 2",
  "refund_no": "sample string 3"
}

响应数据

资源说明

分账回退结果

ResultInfoOfShareRefundResultInfo
名称说明类型扩展说明
code

ResultCode

msg

字符串

data

ShareRefundResultInfo

响应数据格式

application/json, text/json

例子:
{
  "code": "SUCCESS",
  "msg": "sample string 1",
  "data": {
    "store_no": "sample string 1",
    "order_no": "sample string 2",
    "refund_no": "sample string 3",
    "transaction_no": "sample string 4",
    "account_type": 1,
    "account": "sample string 5",
    "refund_amount": 6,
    "result": "sample string 7",
    "finish_time": "sample string 8",
    "error": "sample string 9"
  }
}