根据场次id(多个)查询这些场次各自的剩余座位数
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
channel_code | String | 必须 | 501 | 渠道编码 | |
sid | String | 必须 | 7969408e-683b-427b-8b9d-1bca328ef538 | 用户id,由于无session校验,此处传递sid | |
schedule_ids | String [] | 可选 | 0123456789 |
|
场次id |
cinema_id | String | 可选 | 501 | 影院id |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
data | Json | 包含电影节业务数据,不会包含任何敏感信息 |
1 2 3 4 5 6 7 8 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); SiffSchedulesQueryseatcountinfoRequest req = new SiffSchedulesQueryseatcountinfoRequest(); req.setChannelCode( "501" ); req.setSid( "7969408e-683b-427b-8b9d-1bca328ef538" ); req.setScheduleIds( "0123456789" ); req.setCinemaId( "501" ); SiffSchedulesQueryseatcountinfoResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 | < siff_schedules_queryseatcountinfo_response > < data ></ data > </ siff_schedules_queryseatcountinfo_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 > |
错误码 | 错误描述 | 解决方案 |
---|