Get Workbook Schema
WorkBook
Get Workbook Schema
1️⃣ Overview
Purpose:
Retrieves metadata and detailed information about a specific workbook within a workspace.
2️⃣ Endpoint
GET /noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}
3️⃣ Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| workbookId | UUID | ✅ Yes | Workbook (table) identifier |
4️⃣ Authentication
Requires authentication using:
Authorization: Bearer <token>
5️⃣ Request Headers
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
6️⃣ Example Request
curl -X GET https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId} \
-H "Authorization: Bearer <token>"
7️⃣ Behavior Summary
Retrieves workbook metadata and configuration details.
Returns workbook properties including:
• Workbook title and description
• Table type and structure
• Column definitions
• UI metadata
• Workspace association information
GET
Get Workbook Schema