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_engine/laiye/v1/app/run/query/task/{run_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "code": "success", "message": "", "data": { "run_id": "run_xyz789", "status": "succeeded", "output": { "result": "采购单分析完成" }, "error": null, "started_at": "2026-04-30T10:00:00Z", "ended_at": "2026-04-30T10:00:15Z" } }
根据 run_id 查询工作流应用运行状态和结果。
工作流智能引擎 API 访问密钥。
运行 ID。
工作流运行结果。
业务码。成功通常为 success 或 200。
返回信息。
详细信息,默认为空。
Show child attributes