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

taobao.lark.pos.finance.posaddpullmoney (POS抽钞)

POS抽钞

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
login_id String 可选 yksefanyao 登录账号
channel_code String 可选 pos 渠道编码
pull_account String 可选 fanyao 抽钞人账号
pull_password String 可选 1111 抽钞人密码
device_print String 可选 A1 设备标识
cinema_link_id String 可选 ykse 影院内码
total_money Number 可选 1 当前现金总额(单位分)
pull_money Number 可选 2 抽钞金额(单位分)
pull_no String 可选 aa 抽钞流水号

响应参数

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

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkPosFinancePosaddpullmoneyRequest req = new LarkPosFinancePosaddpullmoneyRequest();
req.setLoginId("yksefanyao");
req.setChannelCode("pos");
req.setPullAccount("fanyao");
req.setPullPassword("1111");
req.setDevicePrint("A1");
req.setCinemaLinkId("ykse");
req.setTotalMoney(1L);
req.setPullMoney(2L);
req.setPullNo("aa");
LarkPosFinancePosaddpullmoneyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

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

返回
顶部