文档中心 > API类目 > 阿里影业云智API

taobao.lark.pos.offline.seat.getreportseatplans (查询上报专资座位图)

查询上报专资座位图

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cinema_link_id String 必须 888889 影院内码
hall_code String 必须 0000000000001 影厅编码

响应参数

名称 类型 示例值 描述
inner_code String LARK-F101-000-0-B001 内部码
data SeatPlanReportInfo 数据
  • └ cinema_link_id
  • String
  • 123123123
  • 内码
  • └ hall_code
  • String
  • 0000000000334555
  • 影厅编码
  • seat_plan_list
  • UploadScreenSeatInfo []
  • 座位图列表
  • regions
  • UploadScreenSeatRegion []
  • 场区列表
  • └ region_code
  • String
  • 1000000490
  • 场区编码
  • └ region_name
  • String
  • 默认场区
  • 场区名称
  • seat_list
  • UploadScreenSeat []
  • 座位列表
  • └ region_code
  • String
  • 1000000490
  • 场区编码
  • └ column_id
  • String
  • 1
  • 座位列
  • └ seat_code
  • String
  • 00000010000004900101
  • 座位号
  • └ x
  • String
  • 1
  • x坐标
  • └ y
  • String
  • 1
  • y坐标
  • └ section_code
  • String
  • 1
  • 分区编码
  • └ type
  • String
  • N
  • 座位类型
  • └ row_id
  • String
  • 1
  • 横坐标
  • └ status
  • String
  • N
  • 座位状态
  • └ layout_version
  • String
  • 2020-09-25
  • 座位图版本
  • └ effective_date
  • String
  • 2020-09-25
  • 生效日期
  • sections
  • UploadScreenSeatSection []
  • 分区列表
  • └ section_code
  • String
  • wedw
  • 分区编号
  • └ section_name
  • String
  • dsds
  • 分区名称
result_code String SUCCESS 错误码
result_msg String 操作成功 错误码描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosOfflineSeatGetreportseatplansRequest req = new LarkPosOfflineSeatGetreportseatplansRequest();
req.setCinemaLinkId("888889");
req.setHallCode("0000000000001");
LarkPosOfflineSeatGetreportseatplansResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_pos_offline_seat_getreportseatplans_response>
    <inner_code>LARK-F101-000-0-B001</inner_code>
    <data>
        <cinema_link_id>123123123</cinema_link_id>
        <hall_code>0000000000334555</hall_code>
        <seat_plan_list>
            <upload_screen_seat_info>
                <regions>
                    <upload_screen_seat_region>
                        <region_code>1000000490</region_code>
                        <region_name>默认场区</region_name>
                    </upload_screen_seat_region>
                </regions>
                <seat_list>
                    <upload_screen_seat>
                        <region_code>1000000490</region_code>
                        <column_id>1</column_id>
                        <seat_code>00000010000004900101</seat_code>
                        <x>1</x>
                        <y>1</y>
                        <section_code>1</section_code>
                        <type>N</type>
                        <row_id>1</row_id>
                        <status>N</status>
                    </upload_screen_seat>
                </seat_list>
                <layout_version>2020-09-25</layout_version>
                <effective_date>2020-09-25</effective_date>
                <sections>
                    <upload_screen_seat_section>
                        <section_code>wedw</section_code>
                        <section_name>dsds</section_name>
                    </upload_screen_seat_section>
                </sections>
            </upload_screen_seat_info>
        </seat_plan_list>
    </data>
    <result_code>SUCCESS</result_code>
    <result_msg>操作成功</result_msg>
</lark_pos_offline_seat_getreportseatplans_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部