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

taobao.lark.pos.account.register (POS会员注册接口)

POS会员注册接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
channel_code String 必须 POS_7777 注册渠道
cinema_link_id String 必须 7777 注册影院
mobile String 必须 13818020602 注册手机
sms_captcha String 可选 345678 验证码
operation_type String 可选 manual 操作类型

响应参数

名称 类型 示例值 描述
data Json {"data":{},"success":true,"resultCode":"SUCCESS","resultMsg":"成功"} 返回值

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosAccountRegisterRequest req = new LarkPosAccountRegisterRequest();
req.setChannelCode("POS_7777");
req.setCinemaLinkId("7777");
req.setMobile("13818020602");
req.setSmsCaptcha("345678");
req.setOperationType("manual");
LarkPosAccountRegisterResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

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

返回
顶部