文档中心 > API类目 > 天猫服务平台

tmall.servicecenter.anomalyrecourse.homedecoration.close (天猫服务平台商家投诉单服务商完结接口)

天猫服务平台商家投诉单服务商完结接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
id Number 必须 1111111 投诉单id
is_agreement Number 必须 1 是否与商家达成一致;0:未达成;1:已达成
remark String 必须 完结方案 完结方案
images String 可选 图片凭证 图片凭证

响应参数

名称 类型 示例值 描述
result Result result
  • └ success
  • Boolean
  • true
  • 调用是否成功
  • └ error_msg
  • String
  • no permission
  • 错误信息
  • └ error_code
  • String
  • 1
  • 错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallServicecenterAnomalyrecourseHomedecorationCloseRequest req = new TmallServicecenterAnomalyrecourseHomedecorationCloseRequest();
req.setId(1111111L);
req.setIsAgreement(1L);
req.setRemark("完结方案");
req.setImages("图片凭证");
TmallServicecenterAnomalyrecourseHomedecorationCloseResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_servicecenter_anomalyrecourse_homedecoration_close_response>
    <result>
        <success>true</success>
        <error_msg>no permission</error_msg>
        <error_code>1</error_code>
    </result>
</tmall_servicecenter_anomalyrecourse_homedecoration_close_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

返回
顶部