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

taobao.lark.pos.card.rechargeorder.getforrefund (会员卡充值订单(为退单)查询接口)

云智业务系统会员卡充值订单(为退单)查询操作,支持后续进行会员卡指定充值订单的退充操作

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cinema_link_id String 必须 7777 影院内码
lease_code String 必须 ykse 租户编码
card_no String 可选 0001 卡号
order_no String 可选 111111 充值订单号
mobile String 可选 12345678901 手机号
start String 可选 2019-07-01 搜索开始日期
end String 可选 2019-07-31 搜索结束日期
page_no Number 必须 1 当前页码
page_size Number 必须 100 每页数量

响应参数

名称 类型 示例值 描述
data Json { "innerCode": null, "success": true, "dataList": [ { "paymentMethodCode": "Cash", "orderNo": "190509000008XX77773250", "cardName": "xuzh-储值卡-卡政策", "mobile": "182****924", "firstCharge": false, "hasRefund": false, "paymentMethodName": "现金", "canRefund": true, "cardNo": "XUZH66665", "useStatus": 0, "realName": "XXX", "tradeAmount": 999900, "cannotReason": "", "tradeDateTime": "2019-05-09 17:18", "class": "cn.com.ykse.umprod.api.result.info.card.CardRechargeForRefundInfo", "displayCardNo": "XU*****65" }, { "paymentMethodCode": "Cash", "orderNo": "190423001003XX77773158", "cardName": "xuzh-储值卡-卡政策", "mobile": "182****924", "firstCharge": true, "hasRefund": false, "paymentMethodName": "现金", "canRefund": false, "cardNo": "XUZH66665", "useStatus": 0, "realName": "XXX", "tradeAmount": 999900, "cannotReason": "首充订单不可退;", "tradeDateTime": "2019-04-23 16:24", "class": "cn.com.ykse.umprod.api.result.info.card.CardRechargeForRefundInfo", "displayCardNo": "XU*****65" } ], "pageInfo": { "curPage": 1, "totalPage": 1, "itemsPerPage": 100, "class": "cn.com.ykse.commons.result.info.PageInfo", "items": 3 }, "resultCode": "SUCCESS", "class": "cn.com.ykse.commons.result.PageListResult", "resultMsg": "成功" } 会员卡充值订单列表

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosCardRechargeorderGetforrefundRequest req = new LarkPosCardRechargeorderGetforrefundRequest();
req.setCinemaLinkId("7777");
req.setLeaseCode("ykse");
req.setCardNo("0001");
req.setOrderNo("111111");
req.setMobile("12345678901");
req.setStart("2019-07-01");
req.setEnd("2019-07-31");
req.setPageNo(1L);
req.setPageSize(100L);
LarkPosCardRechargeorderGetforrefundResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_pos_card_rechargeorder_getforrefund_response>
    <data>{   &quot;innerCode&quot;: null,   &quot;success&quot;: true,   &quot;dataList&quot;: [     {       &quot;paymentMethodCode&quot;: &quot;Cash&quot;,       &quot;orderNo&quot;: &quot;190509000008XX77773250&quot;,       &quot;cardName&quot;: &quot;xuzh-储值卡-卡政策&quot;,       &quot;mobile&quot;: &quot;182****924&quot;,       &quot;firstCharge&quot;: false,       &quot;hasRefund&quot;: false,       &quot;paymentMethodName&quot;: &quot;现金&quot;,       &quot;canRefund&quot;: true,       &quot;cardNo&quot;: &quot;XUZH66665&quot;,       &quot;useStatus&quot;: 0,       &quot;realName&quot;: &quot;XXX&quot;,       &quot;tradeAmount&quot;: 999900,       &quot;cannotReason&quot;: &quot;&quot;,       &quot;tradeDateTime&quot;: &quot;2019-05-09 17:18&quot;,       &quot;class&quot;: &quot;cn.com.ykse.umprod.api.result.info.card.CardRechargeForRefundInfo&quot;,       &quot;displayCardNo&quot;: &quot;XU*****65&quot;     },     {       &quot;paymentMethodCode&quot;: &quot;Cash&quot;,       &quot;orderNo&quot;: &quot;190423001003XX77773158&quot;,       &quot;cardName&quot;: &quot;xuzh-储值卡-卡政策&quot;,       &quot;mobile&quot;: &quot;182****924&quot;,       &quot;firstCharge&quot;: true,       &quot;hasRefund&quot;: false,       &quot;paymentMethodName&quot;: &quot;现金&quot;,       &quot;canRefund&quot;: false,       &quot;cardNo&quot;: &quot;XUZH66665&quot;,       &quot;useStatus&quot;: 0,       &quot;realName&quot;: &quot;XXX&quot;,       &quot;tradeAmount&quot;: 999900,       &quot;cannotReason&quot;: &quot;首充订单不可退;&quot;,       &quot;tradeDateTime&quot;: &quot;2019-04-23 16:24&quot;,       &quot;class&quot;: &quot;cn.com.ykse.umprod.api.result.info.card.CardRechargeForRefundInfo&quot;,       &quot;displayCardNo&quot;: &quot;XU*****65&quot;     }   ],   &quot;pageInfo&quot;: {     &quot;curPage&quot;: 1,     &quot;totalPage&quot;: 1,     &quot;itemsPerPage&quot;: 100,     &quot;class&quot;: &quot;cn.com.ykse.commons.result.info.PageInfo&quot;,     &quot;items&quot;: 3   },   &quot;resultCode&quot;: &quot;SUCCESS&quot;,   &quot;class&quot;: &quot;cn.com.ykse.commons.result.PageListResult&quot;,   &quot;resultMsg&quot;: &quot;成功&quot; }</data>
</lark_pos_card_rechargeorder_getforrefund_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

返回
顶部