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

taobao.lark.pos.card.confirmreneworder (确认续费订单信息)

确认续费订单信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_id String 必须 x 订单号
lease_code String 必须 ykse 租户编码
cinema_link_id String 必须 666 影院内码
channel_code String 必须 POS_666 渠道编码

响应参数

名称 类型 示例值 描述
data Json {"resultMsg":"成功","resultCode":"SUCCESS","success":true} POS续充确认订单接口返回结果,该API不涉及到敏感数据

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosCardConfirmreneworderRequest req = new LarkPosCardConfirmreneworderRequest();
req.setOrderId("x");
req.setLeaseCode("ykse");
req.setCinemaLinkId("666");
req.setChannelCode("POS_666");
LarkPosCardConfirmreneworderResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_pos_card_confirmreneworder_response>
    <data>{&quot;resultMsg&quot;:&quot;成功&quot;,&quot;resultCode&quot;:&quot;SUCCESS&quot;,&quot;success&quot;:true}</data>
</lark_pos_card_confirmreneworder_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

返回
顶部