# 导入进度查询
# host: https://yach-oapi.zhiyinlou.com 正式环境
# host: https://yach-oapi-test.zhiyinlou.com 测试环境
# 概述
名称 | 值 |
---|---|
地址 | /openapi/v2/lore/import/async/process |
请求方式 | GET |
参数 | 见【参数】 |
返回值 | 见【返回值】 |
# 参数
参数 | 参数类型 | 必须 | 说明 |
---|---|---|---|
access_token | String | 是 | 调用接口凭证 |
task_id | String | 是 | 导入的任务ID,从异步导入文件接口的响应中获取 |
node_type | String | 是 | 导入类型,和异步导入文件接口的参数一致 |
返回值(响应从的 200为成功,非200为不成功)
{
"code":200,
"msg":"success",
"obj":{
"progress": 100, //导入进度,100为导入成功
"file_url":"https://s.tal.com/a/xxxxx"//导入后返回的节点地址
}
}