taobao.nextone.logistics.sign.update (AG物流签收状态写接口)

商家上传退货的签收状态给AG

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
refund_id Number 必须 1111111 退款编号
sign_status Number 必须 1 货物签收状态

响应参数

名称 类型 示例值 描述
result Result null 结果
  • └ result_data
  • String
  • null
  • 返回数据
  • └ error_info
  • String
  • null
  • 错误信息
  • └ error_code
  • String
  • null
  • 错误码
  • └ success
  • Boolean
  • null
  • 成功失败

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
NextoneLogisticsSignUpdateRequest req = new NextoneLogisticsSignUpdateRequest();
req.setRefundId(1111111L);
req.setSignStatus(1L);
NextoneLogisticsSignUpdateResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<nextone_logistics_sign_update_response>
    <result>
        <result_data>null</result_data>
        <error_info>null</error_info>
        <error_code>null</error_code>
        <success>null</success>
    </result>
</nextone_logistics_sign_update_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

返回
顶部