v1
latestOpenAPI 3.0.12026-07-22231676.5 KBVault
Get Review Table Metadata
Fetches metadata for a single review table by its ID, including its title, creation timestamp, and the list of file IDs associated with it.
Use the review_table_ids returned by Get Vault Project Metadata to enumerate available review tables in a project. Once you have a review_table_id, you can:
- Call this endpoint to retrieve the table's title, created_at, and file_ids.
- Call Get Review Table Row with a review_table_id and file_id to retrieve row-level data for a specific file.
get/api/v1/vault/review_table/{review_table_id}
Path parameters
review_table_idinteger required
The integer ID of the review table. Obtain this from the review_table_ids array in the Get Vault Project Metadata response.
Response
Review table metadata returned successfully
Example response
{
"response": {
"content": {
"review_table_id": 2365724,
"title": "Lease Review – Q1 2025",
"created_at": "2025-01-10T09:00:00.000000",
"file_ids": [
"0199c5c1-50d9-7d60-93aa-cd65c3b7d5a9",
"01936a5f-8289-703a-9962-42bf196ae611"
]
}
}
}