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

taobao.lark.pos.seat.lockseats (POS锁座)

POS锁座

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
channel_code String 必须 POS_7777 渠道编码
cinema_link_id String 必须 7777 影院内码
operator_user_id String 必须 x 操作用户
schedule_id String 必须 x 场次编码
through_flag String 必须 x 连场标识
schedule_key String 可选 x 场次校验
lock_order_id String 可选 x 平台订单
out_lock_id String 可选 x 外部订单
seat_codes String 必须 [] 锁定座位

响应参数

名称 类型 示例值 描述
data Json {} 锁座id

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosSeatLockseatsRequest req = new LarkPosSeatLockseatsRequest();
req.setChannelCode("POS_7777");
req.setCinemaLinkId("7777");
req.setOperatorUserId("x");
req.setScheduleId("x");
req.setThroughFlag("x");
req.setScheduleKey("x");
req.setLockOrderId("x");
req.setOutLockId("x");
req.setSeatCodes("[]");
LarkPosSeatLockseatsResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_pos_seat_lockseats_response>
    <data>{}</data>
</lark_pos_seat_lockseats_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

返回
顶部