文档中心 > API类目 > 银泰开放平台

alibaba.mos.fin.current.cash.flow.claim (根据流水ID流水认领)

根据流水ID流水认领

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cash_flow_id String 必须 12312311122312321 流水号,mos流水管理流水ID
amount Number 必须 100 认领金额(分)
third_trade_type String 必须 EngPropMgmtFeePmt 下游三方业务类型:例:EngPropMgmtFeePmt --- 工程物业缴费
ext_prams Json 可选 { "serviceStoreNo":"HZ01" } 拓展参数

响应参数

名称 类型 示例值 描述
data Boolean true 流水认领状态: true: 流水认领成功,false,流水认领失败
err_message String 流水认领失败 success = fasle时的异常信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaMosFinCurrentCashFlowClaimRequest req = new AlibabaMosFinCurrentCashFlowClaimRequest();
req.setCashFlowId("12312311122312321");
req.setAmount(100L);
req.setThirdTradeType("EngPropMgmtFeePmt");
req.setExtPramsString("{ \"serviceStoreNo\":\"HZ01\" }");
AlibabaMosFinCurrentCashFlowClaimResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_mos_fin_current_cash_flow_claim_response>
    <data>true</data>
    <err_message>流水认领失败</err_message>
</alibaba_mos_fin_current_cash_flow_claim_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

返回
顶部