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

alibaba.mos.fin.current.cash.flow.get (流水状态查询)

流水状态查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cash_flow_id String 可选 123123123123 mos流水ID
pay_id String 可选 YTOTHER-23423423 payId,缴费生成的支付批次ID
third_trade_type String 必须 EngPropMgmtFeePmt 下游三方业务类型:例:EngPropMgmtFeePmt --- 工程物业缴费

响应参数

名称 类型 示例值 描述
data PaymentCashTopDTO 流水/缴费关系
  • └ cash_flow_id
  • String
  • 123123123123212
  • 流水号
  • └ status
  • Number
  • 2
  • 0,"未认领" 1,"部分认领" 2,"完全认领" 3,"已勾销"
  • └ pay_id
  • String
  • YTOTHER-23423423
  • payId,缴费生成的支付批次ID
err_message String 参数异常 错误异常

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaMosFinCurrentCashFlowGetRequest req = new AlibabaMosFinCurrentCashFlowGetRequest();
req.setCashFlowId("123123123123");
req.setPayId("YTOTHER-23423423");
req.setThirdTradeType("EngPropMgmtFeePmt");
AlibabaMosFinCurrentCashFlowGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_mos_fin_current_cash_flow_get_response>
    <data>
        <cash_flow_id>123123123123212</cash_flow_id>
        <status>2</status>
        <pay_id>YTOTHER-23423423</pay_id>
    </data>
    <err_message>参数异常</err_message>
</alibaba_mos_fin_current_cash_flow_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

返回
顶部