查询 x 元素
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
vendor | String | 可选 | taobao | 系统商,一般不填写,使用须申请 | |
out_hid | String | 必须 | haohua123 | 商家酒店ID,指明该 x 元素属于哪家酒店 | |
out_rid | String | 可选 | room_123 | 商家房型ID,指明该 x 元素关联哪个房型 | |
rate_plan_code | String | 可选 | rp_1234 | 商家 RP ID,指明该 x 元素关联了哪个 RP | |
out_x_codes | String | 可选 | ["abc_123"] | 需要查询的 x_code 编码 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | ResultSet | 返回结果 | |
|
1 2 3 4 5 6 7 8 9 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); XhotelXitemQueryRequest req = new XhotelXitemQueryRequest(); req.setVendor( "taobao" ); req.setOutHid( "haohua123" ); req.setOutRid( "room_123" ); req.setRatePlanCode( "rp_1234" ); req.setOutXCodes( "[\"abc_123\"]" ); XhotelXitemQueryResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
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 | < xhotel_xitem_query_response > < result > < error_msg >参数不存在</ error_msg > < error_code >1</ error_code > < x_items > < hotel_xitem_d_o > < gmt_create >2023-07-22 00:12:23</ gmt_create > < gmt_modified >2023-07-22 00:12:23</ gmt_modified > < out_x_code >xx_12345</ out_x_code > < sub_type_code >ba_1234</ sub_type_code > < out_hid >haozhu_124</ out_hid > < short_name >摆渡车</ short_name > < time >18:00-21:00</ time > < value >199</ value > < item_desc >""</ item_desc > < status >0</ status > < dimension_type >1</ dimension_type > < audit_status >0</ audit_status > < audit_reject_reason >图片不符合要求</ audit_reject_reason > < feature_detail >{}</ feature_detail > < pictures > < hotel_x_item_picture > < is_main >true</ is_main > </ hotel_x_item_picture > </ pictures > </ hotel_xitem_d_o > </ x_items > < total_count >0</ total_count > </ result > </ xhotel_xitem_query_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 > |
错误码 | 错误描述 | 解决方案 |
---|