Skip to main content
GET
GET /v1/tables/{id}/sampleData

Table Sample Data

Manage sample data rows for a table. Sample data provides a preview of the table’s contents and is useful for data discovery and documentation.

Get Sample Data

GET /v1/tables/{id}/sampleData
id
string
required
UUID of the table.

Add Sample Data

PUT /v1/tables/{id}/sampleData
id
string
required
UUID of the table.
columns
array
required
Array of column references describing the sample data columns.
rows
array
required
Array of row arrays. Each row is an array of values matching the column order.

Delete Sample Data

DELETE /v1/tables/{id}/sampleData
id
string
required
UUID of the table.
GET /v1/tables/{id}/sampleData

Returns

Get returns the sample data object with columns and rows arrays. Add returns the updated sample data object. Delete returns no content (204).

Response

columns
array
Array of column definitions for the sample data.
rows
array
Array of row arrays. Each row contains values in the same order as the columns.

Error Handling