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.
GET /noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/{linkColumnId}/linkData?id={rowId}
| 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 |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | integer | ✅ Yes | The row ID of the source record whose linked records you want to retrieve |
Requires Bearer JWT Token
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
curl -X GET 'https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{tableId}/{linkColumnId}/linkData?id=1' \
-H "Authorization: Bearer <token>"
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
This API uses OAuth 2.0 with the authorization code grant flow.
Workspace identifier
Source table identifier
ID of the LINK column to fetch linked data for
The row ID of the source record whose linked records you want to retrieve