Datasources
Get a table
Get a table in the data source identified by {dsId} in the workspace identified by {wId}.
get/api/v1/w/{wId}/spaces/{spaceId}/data_sources/{dsId}/tables/{tId}
Path parameters
wIdstring required
Unique string identifier for the workspace
spaceIdstring required
ID of the space
dsIdstring required
ID of the data source
tIdstring required
ID of the table
Response
The table
Example response
{
"name": "Roi data",
"title": "ROI Data",
"table_id": "1234f4567c",
"description": "roi data for Q1",
"mime_type": "text/csv",
"schema": [
{
"name": "roi",
"value_type": "int",
"possible_values": [
"1",
"2",
"3"
]
}
],
"timestamp": 1732810375150,
"parent_id": "1234f4567c",
"parents": [
"1234f4567c"
]
}