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

taobao.lark.pos.card.modifymobile.new (pos端会员修改手机号V2)

pos端会员修改手机号V2

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
verification String 必须 false 是否认证
mobile String 必须 13800138011 新手机号
access_tokener String 必须 BC11A04144499CADD1DD902BF2590A64 卡密码token
card_no String 必须 TK01007 卡号
cinema_link_id String 必须 626262 影城内码
lease_code String 必须 wy 租户编码
channel_code String 必须 POS_626262 渠道代码
operator String 必须 wy001 操作人
captcha String 可选 263163 短信验证码

响应参数

名称 类型 示例值 描述
data Json "resultMsg": "成功", "resultCode": "SUCCESS", "success": true, "data": { "accountId": "0000008000011148" } } 返回是否修改成功,无敏感字段和信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosCardModifymobileNewRequest req = new LarkPosCardModifymobileNewRequest();
req.setVerification("false");
req.setMobile("13800138011");
req.setAccessTokener("BC11A04144499CADD1DD902BF2590A64");
req.setCardNo("TK01007");
req.setCinemaLinkId("626262");
req.setLeaseCode("wy");
req.setChannelCode("POS_626262");
req.setOperator("wy001");
req.setCaptcha("263163");
LarkPosCardModifymobileNewResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

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

返回
顶部