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/files/{file_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "code": "<string>", "message": "<string>", "tips": "<string>", "data": { "id": "<string>", "file_name": "<string>", "file_size": 123, "content_type": "<string>", "download_url": "<string>", "status": "<string>" } }
根据文件 ID 获取文件元信息。
工作流智能引擎 API 访问密钥。
文件 ID。
文件信息。
业务码。成功通常为 success 或 200。
返回信息。
详细信息,默认为空。
Show child attributes