提供卖回填改签信息服务能力
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|
change_item_param | IeChangeItemVo | 必须 | 改签产品信息 | ||||||||
|
|||||||||||
change_pnr_params | IeChangePnrParamVo [] | 必须 |
|
改签PNR信息 | |||||||
|
|||||||||||
change_order_id | Number | 必须 | 123456 | 改签申请单号 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
api_error_code | Number | 1001 | apiErrorCode |
api_error_msg | String | 回填异常 | apiErrorMsg |
is_success | Boolean | true | success |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlitripIeAgentChangeFillchangeRequest req = new AlitripIeAgentChangeFillchangeRequest(); AlitripIeAgentChangeFillchangeRequest.IeChangeItemVo obj1 = new AlitripIeAgentChangeFillchangeRequest.IeChangeItemVo(); obj1.setAdultServiceFee(100L); obj1.setAdultUpgradeFee(100L); obj1.setBaggageRule( "30KG" ); obj1.setChildServiceFee(100L); obj1.setChildUpgradeFee(100L); List<AlitripIeAgentChangeFillchangeRequest.IeChangeItineraryVo> list3 = new ArrayList<AlitripIeAgentChangeFillchangeRequest.IeChangeItineraryVo>(); AlitripIeAgentChangeFillchangeRequest.IeChangeItineraryVo obj4 = new AlitripIeAgentChangeFillchangeRequest.IeChangeItineraryVo(); list3.add(obj4); obj4.setArrCityCode( "BJS" ); List<AlitripIeAgentChangeFillchangeRequest.IeChangeFlightSegmentVo> list7 = new ArrayList<AlitripIeAgentChangeFillchangeRequest.IeChangeFlightSegmentVo>(); AlitripIeAgentChangeFillchangeRequest.IeChangeFlightSegmentVo obj8 = new AlitripIeAgentChangeFillchangeRequest.IeChangeFlightSegmentVo(); list7.add(obj8); obj8.setArrAirport( "SHA" ); obj8.setArrCity( "SHA" ); obj8.setArrTerminal( "1" ); obj8.setArrTime(StringUtils.parseDateTime( "2017-10-01 00:00:00" )); obj8.setCabinClassCode( "Y" ); obj8.setCabinCode( "Q" ); obj8.setCodeShare( true ); obj8.setDepAirport( "SHA" ); obj8.setDepCity( "SHA" ); obj8.setDepTerminal( "1" ); obj8.setDepTime(StringUtils.parseDateTime( "2017-10-01 00:00:00" )); obj8.setMarketingFlightNumber( "CZ1001" ); obj8.setOperatingFlightNumber( "CZ1001" ); obj8.setSegmentIndex(1L); list5.setChangeFlights(list7); obj4.setDepCityCode( "BJS" ); obj4.setIndex(1L); obj1.setDestinationItinerary(list3); obj1.setInfantUpgradeFee(100L); obj1.setInfantServiceFee(100L); req.setChangeItemParam(obj1); List<AlitripIeAgentChangeFillchangeRequest.IeChangePnrParamVo> list10 = new ArrayList<AlitripIeAgentChangeFillchangeRequest.IeChangePnrParamVo>(); AlitripIeAgentChangeFillchangeRequest.IeChangePnrParamVo obj11 = new AlitripIeAgentChangeFillchangeRequest.IeChangePnrParamVo(); list10.add(obj11); obj11.setPassengerName( "taobao" ); obj11.setPnrNO( "PNRSZ" ); req.setChangePnrParams(list10); req.setChangeOrderId(123456L); AlitripIeAgentChangeFillchangeResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 | < alitrip_ie_agent_change_fillchange_response > < api_error_code >1001</ api_error_code > < api_error_msg >回填异常</ api_error_msg > < is_success >true</ is_success > </ alitrip_ie_agent_change_fillchange_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 > |
错误码 | 错误描述 | 解决方案 |
---|