Get Link Data
Links & Joins
Get Link Data
1️⃣ Overview
Purpose: Retrieves the linked records for a specific row via a LINK column. Given a source record’s row ID, this returns all destination records that are linked to it through the specified link column.
2️⃣ Endpoint
GET /noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/{linkColumnId}/linkData?id={rowId}
3️⃣ Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| tableId | UUID | ✅ Yes | Source table identifier |
| linkColumnId | UUID | ✅ Yes | ID of the LINK column to fetch linked data for |
4️⃣ Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | integer | ✅ Yes | The row ID of the source record whose linked records you want to retrieve |
5️⃣ Authentication
Requires Bearer JWT Token
Authorization: Bearer <token>
6️⃣ Request Headers
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
7️⃣ Example Request
curl -X GET 'https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/{linkColumnId}/linkData?id=1' \
-H "Authorization: Bearer <token>"
8️⃣ Behavior Summary
Returns all records linked to the specified source row via the given LINK column.
Supports:
• Fetching linked records for any LINK column type (HAS_MANY, ONE_TO_ONE, MANY_TO_MANY)
• id query param — row ID of the source record in the current table
• linkColumnId — identifies which link column's data to retrieve
GET
Get Link Data
Authorizations
This API uses OAuth 2.0 with the authorization code grant flow.
Path Parameters
Workspace identifier
Source table identifier
ID of the LINK column to fetch linked data for
Query Parameters
The row ID of the source record whose linked records you want to retrieve