文档中心 > API类目 > ICBU-交易

alibaba.icbu.snsoft.account.bill.sync (ICBU自营-南北软件-jv台账同步)

ICBU自营-南北软件-jv台账同步

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
south_north_software_common_request SouthNorthSoftwareCommonRequest 必须 请求参数
  • └ data_json
  • String
  • 必须
  • [{"salordicode":"123"}]
  • 将包含所需字段(ccode cname等)的对象序列化成json字符串
  • └ for_test
  • Boolean
  • 可选
  • true
  • 是否为测试数据

响应参数

名称 类型 示例值 描述
result ContentResponseDTO 返回结果
  • └ success
  • Boolean
  • false
  • 是否成功
  • └ error_code
  • String
  • 500
  • 错误码
  • └ error_msg
  • String
  • 系统错误
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIcbuSnsoftAccountBillSyncRequest req = new AlibabaIcbuSnsoftAccountBillSyncRequest();
AlibabaIcbuSnsoftAccountBillSyncRequest.SouthNorthSoftwareCommonRequest obj1 = new AlibabaIcbuSnsoftAccountBillSyncRequest.SouthNorthSoftwareCommonRequest();
obj1.setDataJson("[{\"salordicode\":\"123\"}]");
obj1.setForTest(true);
req.setSouthNorthSoftwareCommonRequest(obj1);
AlibabaIcbuSnsoftAccountBillSyncResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_icbu_snsoft_account_bill_sync_response>
    <result>
        <success>false</success>
        <error_code>500</error_code>
        <error_msg>系统错误</error_msg>
    </result>
</alibaba_icbu_snsoft_account_bill_sync_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

返回
顶部