撤单接口-线下
请求方式 | body | 编码 | 接口地址 |
---|---|---|---|
POST | application/json | UTF-8 | 集测:https://mchapitest.shengpay.com/pay/reverseOrder 生产:https://mchapi.shengpay.com/pay/reverseOrder |
请求参数
变量名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
mchId | String(16) | Y | 93751497 | 商户号 |
outTradeNo | String(64) | Y | SDFASDFASF | 商户订单号 |
nonceStr | String(32) | Y | 随机字符串 | |
signType | String | Y | RSA | 签名类型 |
sign | String | Y | 签名 (见签名介绍) |
请求示例
1 2 3 4 5 6 7 |
|
响应参数
变量名 | 类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
returnCode | String | Y | SUCCESS | 返回码(SUCCESS/FAIL) |
returnMsg | String | N | 返回消息(当returnCode为FAIL时使用) | |
resultCode | String | Y | SUCCESS | 业务结果(SUCCESS/FAIL) |
errorCode | String | N | 错误代码(当resultCode为FAIL时使用) 枚举类:(见错误码枚举类) | |
errorCodeDes | String | N | 错误描述(当resultCode为FAIL时使用) | |
nonceStr | String | N | 随机字符串 | |
signType | String | N | RSA | 签名类型 |
sign | String | N | 签名 (见签名介绍) |
响应示例
1 2 3 4 5 6 7 |
|