v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBReference Tables
Get table
Get a reference table by ID
get/api/v2/reference-tables/tables/{id}
Path parameters
idstring required
Unique identifier of the reference table to retrieve
Response
OK
Example response
{
"data": {
"attributes": {
"created_by": "00000000-0000-0000-0000-000000000000",
"description": "example description",
"file_metadata": {
"access_details": {
"aws_detail": {
"aws_account_id": "123456789000",
"aws_bucket_name": "my-bucket",
"file_path": "path/to/file.csv"
}
},
"sync_enabled": true
},
"last_updated_by": "00000000-0000-0000-0000-000000000000",
"row_count": 5,
"schema": {
"fields": [
{
"name": "id",
"type": "INT32"
},
{
"name": "name",
"type": "STRING"
}
],
"primary_keys": [
"id"
]
},
"source": "S3",
"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"
}
}