商家改约改地址请求.
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
refund_modify_appoint_time_request | RefundModifyAppointTimeRequest | 必须 | 入参 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result | 返回结果 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); IndustryDajianRpAppointModifyRequest req = new IndustryDajianRpAppointModifyRequest(); IndustryDajianRpAppointModifyRequest.RefundModifyAppointTimeRequest obj1 = new IndustryDajianRpAppointModifyRequest.RefundModifyAppointTimeRequest(); obj1.setSellerId(123L); obj1.setBizActionType( "identify" ); obj1.setDoorDate(StringUtils.parseDateTime( "2024-03-13 00:00:00" )); obj1.setExtendFields( "{\"key\":\"value\"}" ); obj1.setDoorSlice( "day" ); obj1.setOperatorId( "10010" ); obj1.setOperatorName( "测试账号" ); obj1.setRefundId(1234L); obj1.setReceiverProvince( "江苏省" ); obj1.setReceiverCity( "南京市" ); obj1.setReceiverDistrict( "江宁区" ); obj1.setReceiverAddress( "*********" ); obj1.setReceiverDivisionId(310107017L); obj1.setRefundCollaborativeCode( "345" ); obj1.setReceiverTown( "麒麟街道" ); obj1.setSliceStartTime( "09:00" ); obj1.setSliceEndTime( "21:00" ); req.setRefundModifyAppointTimeRequest(obj1); IndustryDajianRpAppointModifyResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 | < industry_dajian_rp_appoint_modify_response > < result > < success >true</ success > < error_code >PARAM_INVALID</ error_code > < error_msg >请求参数无效</ error_msg > </ result > </ industry_dajian_rp_appoint_modify_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|