1.1 业务简述
1.2 请求参数
字段名 | 类型 | 描述 | 必填 | 备注 |
refund_code | string | 退款单单号 | 否 | |
refund_type | number | 退款单种类 | 是 | 0-仅退款 1-退货退款 |
refund_reason | string | 退款原因 | 否 | |
trade_code | string | 关联订单单号 | 否 | |
shop_code | string | 店铺代码 | 是 | |
vip_code | string | 会员代码 | 是 | |
type_code | string | 单据类型代码 | 否 | |
payment_type_code | string | 退款支付方式代码 | 否 | |
amount | price | 退款金额 | 是 | |
note | string | 备注 | 否 | |
item_detail | Item[] | 退款商品列表 | 否 | 退货退款(refund_type为1)必填 |
Item:
字段名 | 类型 | 描述 | 必填 | 备注 |
barcode | string | 商品条码 | 否 | |
qty | string | 数量 | 否 | |
price | string | 单价 | 否 | |
note | number | 备注 | 否 |
Json请求示例:
{ "appkey": "112194", "sessionkey": "50b24306aacf479a9a5651f0fc7cabc3", "method": "gy.erp.trade.refund.add", "refund_code": "6401506928338909820", "refund_type": 1, "trade_code": "SO56150291587", "shop_code": "gsh_test", "vip_code": "112953", "payment_type_code": "zhifubao", "amount": 0.01, "note": "2015100901211341", "item_detail": [ { "barcode": "gytest001_marygytest001_mary", "qty": 1 } ], "sign": "A9DA35897759983CAFBF858E5E4CFB85" } |
1.3 响应参数
字段名 | 类型 | 描述 | 必填 | 备注 |
success | boolean | 成功与否 | ||
errorCode | string | 错误代码 | ||
subErrorCode | string | 子错误代码 | ||
errorDesc | string | 错误描述 | ||
subErrorDesc | string | 子错误描述 | ||
requestMethod | string | 请求方法 | ||
code | string | 单据编号 |
Json返回示例:
{ "success": true, "errorCode": "", "subErrorCode": "", "errorDesc": "", "subErrorDesc": "", "requestMethod": "gy.erp.trade.refund.add", "code": "RMO56235851624" } |