The Lark Integration service is running locally at http://localhost:8000.
This skill provides access to the following capabilities:
- •
Task Management:
- •Create Task:
POST /api/v1/tasks - •Get Task:
GET /api/v1/tasks/:task_id - •Delete Task:
DELETE /api/v1/tasks/:task_id
- •Create Task:
- •
Document Management (Docx):
- •Create Document:
POST /api/v1/docs - •Get Document Info:
GET /api/v1/docs/:doc_token - •Get Raw Content:
GET /api/v1/docs/:doc_token/raw - •Get Blocks:
GET /api/v1/docs/:doc_token/blocks
- •Create Document:
- •
Wiki Management:
- •Create Node:
POST /api/v1/wiki - •Search Nodes:
POST /api/v1/wiki/search - •Get Node Info:
GET /api/v1/wiki/nodes/:node_token - •List Nodes:
GET /api/v1/wiki/spaces/:space_id/nodes - •Move Node:
POST /api/v1/wiki/spaces/:space_id/nodes/:node_token/move - •Update Title:
POST /api/v1/wiki/spaces/:space_id/nodes/:node_token/update_title - •Move Docs to Wiki:
POST /api/v1/wiki/spaces/:space_id/nodes/move_docs_to_wiki
- •Create Node:
- •
Docx Block Operations:
- •Get Block:
GET /api/v1/docx/v1/documents/:document_id/blocks/:block_id - •Get Children:
GET /api/v1/docx/v1/documents/:document_id/blocks/:block_id/children - •Create Children:
POST /api/v1/docx/v1/documents/:document_id/blocks/:block_id/children - •Update Block:
PATCH /api/v1/docx/v1/documents/:document_id/blocks/:block_id - •Delete Children:
DELETE /api/v1/docx/v1/documents/:document_id/blocks/:block_id/children/batch_delete - •Convert Content:
POST /api/v1/docx/v1/documents/blocks/convert
- •Get Block:
Automatic URL Handling
When a user provides a Feishu/Lark URL, automatically use the appropriate API to fetch its content.
Wiki URLs
Pattern: https://*.feishu.cn/wiki/:token
Action: Call GET /api/v1/wiki/nodes/:token (e.g. https://tparts-global.feishu.cn/wiki/IqgjwXyXoi90jLkMMQccHs6Enz5 -> token: IqgjwXyXoi90jLkMMQccHs6Enz5)
Docx URLs
Pattern: https://*.feishu.cn/docx/:token
Action: Call GET /api/v1/docs/:token
Refer to docs/openapi.yaml or README.md for payload details.