Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}}; fetch('https://adp.laiye.com/open/agentic_doc_processor/{tenant_name}/v1/app/doc/extract/query/task/{task_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "code": "success", "message": "", "data": { "task_id": "94fe9b74e0e311f091505e345594c618", "file_url": "", "status": 4, "doc_recognize_result": [], "extraction_result": [] } }
根据创建任务接口返回的 task_id 查询文档抽取状态和结果。
用户接入 OpenAPI 的令牌,在应用 API 中查看。
租户名称,默认 laiye。
任务 ID。
文档抽取结果。
业务码。成功通常为 success 或 200。
返回信息。
详细信息,默认为空。
Show child attributes