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"
}
}