文档中心 > API类目 > 书旗内容文巢

alibaba.shuqi.algorithm.config.handlelog.list (操作日志列表)

操作日志列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
handle_type Number 可选 1 操作类型
operator String 可选 姚彬 操作人

响应参数

名称 类型 示例值 描述
data HandleLogListResp 返回数据
  • └ total
  • Number
  • 10
  • 返回数据条数
  • handle_log_list
  • HandleLogResp []
  • 返回列表
  • └ id
  • Number
  • 1
  • id
  • └ operator
  • String
  • 姚彬
  • 操作人
  • └ handle_type_str
  • String
  • 新增schema
  • 操作类型
  • └ pre_handle_data
  • String
  • sdfs
  • 操作前数据
  • └ post_handle_data
  • String
  • sdfsdfs
  • 操作后数据
  • └ gmt_create
  • String
  • 2023-03-16 16:09:16
  • 操作时间
message String ok 服务信息
status Number 200 状态码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaShuqiAlgorithmConfigHandlelogListRequest req = new AlibabaShuqiAlgorithmConfigHandlelogListRequest();
req.setHandleType(1L);
req.setOperator("姚彬");
AlibabaShuqiAlgorithmConfigHandlelogListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_shuqi_algorithm_config_handlelog_list_response>
    <data>
        <total>10</total>
        <handle_log_list>
            <handle_log_resp>
                <id>1</id>
                <operator>姚彬</operator>
                <handle_type_str>新增schema</handle_type_str>
                <pre_handle_data>sdfs</pre_handle_data>
                <post_handle_data>sdfsdfs</post_handle_data>
                <gmt_create>2023-03-16 16:09:16</gmt_create>
            </handle_log_resp>
        </handle_log_list>
    </data>
    <message>ok</message>
    <status>200</status>
</alibaba_shuqi_algorithm_config_handlelog_list_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

返回
顶部