Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbookId}
/
linkRecordV2
Link Records
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/linkRecordV2 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "sourceRecordId": 1,
    "destinationRecordId": 1,
    "linkColumnId": "21224153-2f85-4b24-a306-4cfbc7e73f70"
  },
  {
    "sourceRecordId": 1,
    "destinationRecordId": 2,
    "linkColumnId": "21224153-2f85-4b24-a306-4cfbc7e73f70"
  }
]
'

Authorizations

Authorization
string
header
required

This API uses OAuth 2.0 with the authorization code grant flow.

Path Parameters

workspaceId
string<uuid>
required

Workspace identifier

workbookId
string<uuid>
required

Workbook identifier

Body

application/json
sourceRecordId
integer
required

Primary key of the record in the current (source) table

destinationRecordId
integer
required

Primary key of the record in the destination table

LINK column ID or link dataType columnId for LookUp

Response

200

Records linked successfully