Get All Workbooks in workspace
curl --request GET \
--url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables \
--header 'Authorization: Bearer <token>'import requests
url = "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyWorkBook
Get All Workbooks in workspace
1️⃣ Overview
Purpose:
Retrieve a list of all Workbooks associated with a specific workspace.
Used to populate workspace dashboards or fetch workbook structure metadata for synchronization tasks.
2️⃣ Endpoint
GET /noCo/api/v2/workspaces/{workspaceId}/tables
3️⃣ Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Identifier of the workspace to query |
4️⃣ Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| isIncludeColumns | boolean | ❌ No | If true, the response includes column metadata for each workbook |
5️⃣ Authentication
Requires authentication using:
Authorization: Bearer <token>
6️⃣ Request Headers
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Accept | ❌ No |
7️⃣ Example Request
curl -X GET https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables?isIncludeColumns=true \
-H "Authorization: Bearer <token>"
8️⃣ Response Fields
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier for the workbook |
| title | string | Display name of the workbook |
| columns | array | Column metadata (returned only when isIncludeColumns=true) |
| tableType | enum | Type of workbook (DYNAMIC, STATIC) |
9️⃣ Behavior Summary
Retrieves all workbooks within the specified workspace.
If isIncludeColumns=true, column definitions such as name, type, and UI metadata are included in the response.
Results are typically returned in the order of workbook position configured in the workspace.
GET
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
Get All Workbooks in workspace
curl --request GET \
--url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables \
--header 'Authorization: Bearer <token>'import requests
url = "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body