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

taobao.lark.pos.card.external.get (获取外部会员卡接口)

获取外部会员卡接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cinema_link_id String 必须 1 影院编码
card_no String 必须 2 会员卡卡号

响应参数

名称 类型 示例值 描述
data Json { "innerCode": "LARK-F143-001-4-B001", "success": true, "dataList": [ { "birthday": null, "cardName": null, "cardCost": null, "cardTypeName": null, "rechargeMin": null, "cardNo": "123123", "idNo": null, "cinemaLinkId": null, "validateMobile": null, "freezeReason": null, "membershipFee": null, "cinemaName": null, "expireDate": null, "canOperTypeList": null, "class": "cn.com.ykse.card.api.result.info.card.CardBaseInfo", "memberPoints": null, "cardStatus": null, "optTypes": null, "amount": 10000, "cashReplenish": null, "cardRuleCode": null, "mobile": null, "cardType": "123123", "destroyFee": null, "userName": null, "accountId": null, "changeCost": null, "usefulBenTickets": null, "rechargeExpireMonth": null, "extensionFee": null, "photoLink": null, "cardStatusName": null } ], "resultCode": "SUCCESS", "class": "cn.com.ykse.commons.result.ListResult", "resultMsg": "成功" } 外卖订单查询结果

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosCardExternalGetRequest req = new LarkPosCardExternalGetRequest();
req.setCinemaLinkId("1");
req.setCardNo("2");
LarkPosCardExternalGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_pos_card_external_get_response>
    <data>{   &quot;innerCode&quot;: &quot;LARK-F143-001-4-B001&quot;,   &quot;success&quot;: true,   &quot;dataList&quot;: [     {       &quot;birthday&quot;: null,       &quot;cardName&quot;: null,       &quot;cardCost&quot;: null,       &quot;cardTypeName&quot;: null,       &quot;rechargeMin&quot;: null,       &quot;cardNo&quot;: &quot;123123&quot;,       &quot;idNo&quot;: null,       &quot;cinemaLinkId&quot;: null,       &quot;validateMobile&quot;: null,       &quot;freezeReason&quot;: null,       &quot;membershipFee&quot;: null,       &quot;cinemaName&quot;: null,       &quot;expireDate&quot;: null,       &quot;canOperTypeList&quot;: null,       &quot;class&quot;: &quot;cn.com.ykse.card.api.result.info.card.CardBaseInfo&quot;,       &quot;memberPoints&quot;: null,       &quot;cardStatus&quot;: null,       &quot;optTypes&quot;: null,       &quot;amount&quot;: 10000,       &quot;cashReplenish&quot;: null,       &quot;cardRuleCode&quot;: null,       &quot;mobile&quot;: null,       &quot;cardType&quot;: &quot;123123&quot;,       &quot;destroyFee&quot;: null,       &quot;userName&quot;: null,       &quot;accountId&quot;: null,       &quot;changeCost&quot;: null,       &quot;usefulBenTickets&quot;: null,       &quot;rechargeExpireMonth&quot;: null,       &quot;extensionFee&quot;: null,       &quot;photoLink&quot;: null,       &quot;cardStatusName&quot;: null     }   ],   &quot;resultCode&quot;: &quot;SUCCESS&quot;,   &quot;class&quot;: &quot;cn.com.ykse.commons.result.ListResult&quot;,   &quot;resultMsg&quot;: &quot;成功&quot; }</data>
</lark_pos_card_external_get_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

返回
顶部