tables
Get documents in a table
Returns all documents assigned to a specific table.
get/v1/tables/{id}/documents
Path parameters
idstring required
Example:tbl_abc123
Table ID
Response
Documents in table
Example response
{
"table_id": "tbl_abc123",
"documents": [
{
"id": "doc_xyz789",
"title": "NDA Agreement",
"total_nodes": 12,
"metadata": {
"author": "Legal Team"
},
"created_at": "2026-01-27T10:00:00Z"
}
],
"total": 15
}Changes
Changed in 2 of the 7 revisions of this API.22
- ●
removed the optional property
documents/items/authorfrom the response with the200statusresponse-optional-property-removed
- ○
added the optional property
documents/items/metadatato the response with the200statusresponse-optional-property-added
- ●
- ●
removed the optional property
documents/items/metadatafrom the response with the200statusresponse-optional-property-removed
- ○
added the optional property
documents/items/authorto the response with the200statusresponse-optional-property-added
This revision also has 12 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●