Get All Link Tables of Current Table
1️⃣ Overview
Purpose: Retrieves all tables that are linked to a specified table within a workspace. Useful for discovering all relationships (link columns) associated with a table.
2️⃣ Endpoint
GET /noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/linkTables
3️⃣ Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| tableId | UUID | ✅ Yes | Table identifier to query linked tables for |
4️⃣ Authentication
Requires Bearer JWT Token
Authorization: Bearer <token>
5️⃣ Request Headers
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
6️⃣ Example Request
curl -X GET https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/linkTables \
-H "Authorization: Bearer <token>"
7️⃣ Behavior Summary
Returns all tables linked to the specified table.
Includes metadata about link columns and relation types.
Authorizations
This API uses OAuth 2.0 with the authorization code grant flow.
Path Parameters
Workspace identifier
Table identifier to query linked tables for
Response
Linked tables retrieved successfully
Unique identifier of the linked table
Workspace this table belongs to
Internal system name of the table
Display name of the table shown in the UI
Optional description of the table
List of all columns in the table including system-generated and user-defined columns
List of views defined on this table