Datasources
Get tables
Get tables in the data source identified by {dsId} in the workspace identified by {wId}.
get/api/v1/w/{wId}/spaces/{spaceId}/data_sources/{dsId}/tables
Path parameters
wIdstring required
Unique string identifier for the workspace
spaceIdstring required
ID of the space
dsIdstring required
ID of the data source
Response
The tables
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"
]
}
]