文档中心 > API类目 > AIS基石API

alibaba.ais.meta.capture.error.modcaptureerror (修改错误分析结果)

修改错误分析结果

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
capture_error_param CaptureErrorParam 可选 capture_error_param
  • └ action_code
  • String
  • 必须
  • action_code
  • action_code
  • └ external_system_id
  • String
  • 可选
  • external_system_id
  • external_system_id
  • └ oss_file_key
  • String []
  • 可选
  • oss_file_key
  • oss_file_key
  • └ error_code
  • String
  • 必须
  • error_code
  • error_code
  • └ brand
  • String
  • 必须
  • brand
  • brand
  • └ error_msg
  • String
  • 必须
  • error_msg
  • error_msg
  • └ station_name
  • String
  • 必须
  • station_name
  • station_name
  • └ action_msg
  • String
  • 必须
  • action_msg
  • action_msg
  • └ type
  • String
  • 必须
  • type
  • type
  • └ problem_request_id
  • String
  • 必须
  • problem_request_id
  • problem_request_id

响应参数

名称 类型 示例值 描述
result DataResult result
  • └ data
  • String
  • {}
  • data
  • └ err_code
  • String
  • foo
  • code
  • └ err_msg
  • String
  • foo
  • msg
  • └ is_success
  • Boolean
  • false
  • success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAisMetaCaptureErrorModcaptureerrorRequest req = new AlibabaAisMetaCaptureErrorModcaptureerrorRequest();
AlibabaAisMetaCaptureErrorModcaptureerrorRequest.CaptureErrorParam obj1 = new AlibabaAisMetaCaptureErrorModcaptureerrorRequest.CaptureErrorParam();
obj1.setActionCode("action_code");
obj1.setExternalSystemId("external_system_id");
obj1.setOssFileKey("oss_file_key");
obj1.setErrorCode("error_code");
obj1.setBrand("brand");
obj1.setErrorMsg("error_msg");
obj1.setStationName("station_name");
obj1.setActionMsg("action_msg");
obj1.setType("type");
obj1.setProblemRequestId("problem_request_id");
req.setCaptureErrorParam(obj1);
AlibabaAisMetaCaptureErrorModcaptureerrorResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_ais_meta_capture_error_modcaptureerror_response>
    <result>
        <data>{}</data>
        <err_code>foo</err_code>
        <err_msg>foo</err_msg>
        <is_success>false</is_success>
    </result>
</alibaba_ais_meta_capture_error_modcaptureerror_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

返回
顶部