manage_bitable_record
Manage rows in a Bitable table with operations: search, get, create, update, or delete. Accepts single or batch records up to 500.
Instructions
[Official API] Manage records (rows) inside a Bitable table. action=search, get, create, update, delete. create/update/delete accept arrays — single record or up to 500.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Operation to perform | |
| app_token | Yes | Bitable app token. Accepts native token, wiki node, or Feishu URL. | |
| table_id | Yes | Table ID | |
| record_id | No | Record ID — required for action=get. | |
| records | No | Records to write. For create: [{fields:{field_name:value}}]. For update: [{record_id, fields:{...}}]. Single record or up to 500. | |
| record_ids | No | Record IDs to delete. Single ID or up to 500. | |
| filter | No | Filter conditions (search only, optional) | |
| sort | No | Sort conditions (search only, optional) | |
| page_size | No | Results per page (search only, default 20) |