v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBReference Tables
List tables
List all reference tables in this organization.
get/api/v2/reference-tables/tables
Query parameters
page[limit]integer
Number of tables to return.
page[offset]integer
Number of tables to skip for pagination.
sort'updated_at' | 'table_name' | 'status' | '-updated_at' | '-table_name' | '-status'
Sort field and direction for reference tables. Use field name for ascending, prefix with "-" for descending.
Sort field and direction for the list of reference tables. Use field name for ascending, prefix with "-" for descending.
filter[status]string
Filter by table status.
filter[table_name][exact]string
Filter by exact table name match.
filter[table_name][contains]string
Filter by table name containing substring.
Response
OK
Example response
{
"data": [
{
"attributes": {
"created_by": "00000000-0000-0000-0000-000000000000",
"description": "example description",
"file_metadata": {
"access_details": {},
"error_message": "",
"error_row_count": 0,
"upload_id": "00000000-0000-0000-0000-000000000000"
},
"last_updated_by": "",
"row_count": 5,
"schema": {
"fields": [
{
"name": "id",
"type": "INT32"
},
{
"name": "name",
"type": "STRING"
}
],
"primary_keys": [
"id"
]
},
"source": "LOCAL_FILE",
"status": "DONE",
"table_name": "test_reference_table",
"tags": [
"tag1",
"tag2"
],
"updated_at": "2000-01-01T01:00:00+00:00"
},
"id": "00000000-0000-0000-0000-000000000000",
"type": "reference_table"
},
{
"attributes": {
"created_by": "00000000-0000-0000-0000-000000000000",
"description": "example description",
"file_metadata": {
"access_details": {
"aws_detail": {
"aws_account_id": "test-account-id",
"aws_bucket_name": "test-bucket",
"file_path": "test_rt.csv"
}
},
"error_message": "",
"error_row_count": 0,
"sync_enabled": true
},
"last_updated_by": "00000000-0000-0000-0000-000000000000",
"row_count": 5,
"schema": {
"fields": [
{
"name": "location",
"type": "STRING"
},
{
"name": "file_name",
"type": "STRING"
}
],
"primary_keys": [
"location"
]
},
"source": "S3",
"status": "DONE",
"table_name": "test_reference_table_2",
"tags": [
"test_tag1",
"tag2",
"3"
],
"updated_at": "2000-01-01T01:00:00+00:00"
},
"id": "00000000-0000-0000-0000-000000000000",
"type": "reference_table"
}
]
}