# 导出知识库节点进度查询

文档 API 使用须知

# host: https://yach-oapi.zhiyinlou.com  正式环境

# host: https://yach-oapi-test.zhiyinlou.com  测试环境

# 概述

名称
地址 /openapi/v2/lore/node/export/progress
请求方式 GET
参数 见【参数】
返回值 见【返回值】
名称
Content-Type application/json

# 参数

参数 参数类型 必须 说明
access_token String 调用接口凭证
task_id String 上一步骤导入返回的 task_id

示例:

{
  "access_token": "xxxxx",
  "task_id": "123123123"
}

返回值(响应从的 200 为成功,非 200 为不成功)

{
  "code": 200, //200为成功,其它为失败
  "msg": "success",
  "obj": {
    "progress": 100,
    "download_url": "https:xxxxx"
  }
}
foo