Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbook_id}
/
rows
Add Row with Linked Records
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbook_id}/rows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cellValues": {
    "name": "",
    "notes": ""
  },
  "linkRecords": [
    {
      "destinationRecordId": 2,
      "linkColumnId": "ed7584c6-a33a-4779-b7bb-03a5d1345bb2"
    }
  ]
}
'
{
  "id": 101,
  "cellValues": {
    "name": "",
    "notes": ""
  },
  "linkRecords": [
    {
      "destinationRecordId": 2,
      "linkColumnId": "ed7584c6-a33a-4779-b7bb-03a5d1345bb2"
    }
  ]
}

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

workbook_id
string<uuid>
required

Target table identifier

Body

application/json
cellValues
object
required

Key-value map of column names and their initial values for the new row

List of link operations to attach when creating the row

Response

200 - application/json

Row created and linked successfully

id
integer

Auto-generated primary key of the newly created row

cellValues
object

The column values stored for the new row

Confirmation of link relations established