文档中心 > API类目 > 自动驾驶内部API

alibaba.ailabs.mindfree.processingjob.notify (修改数据处理任务状态)

修改数据处理任务状态

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
processing_job_id String 必须 1
  • 默认值:1
  • 任务ID
    status String 必须 1
  • 默认值:1
  • 状态
    creator String 必须 1
  • 默认值:1
  • 创建人
    creator_no String 必须 1
  • 默认值:1
  • 工号

    响应参数

    名称 类型 示例值 描述
    tp_response Response response
    • └ data
    • Boolean
    • true
    • 返回结果
    • └ msg_info
    • String
    • xxxxx
    • 返回消息

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AlibabaAilabsMindfreeProcessingjobNotifyRequest req = new AlibabaAilabsMindfreeProcessingjobNotifyRequest();
    req.setProcessingJobId("1");
    req.setStatus("1");
    req.setCreator("1");
    req.setCreatorNo("1");
    AlibabaAilabsMindfreeProcessingjobNotifyResponse rsp = client.execute(req);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <alibaba_ailabs_mindfree_processingjob_notify_response>
        <tp_response>
            <data>true</data>
            <msg_info>xxxxx</msg_info>
        </tp_response>
    </alibaba_ailabs_mindfree_processingjob_notify_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

    返回
    顶部