Purpose: Creates a new row in the specified table and simultaneously links it to one or more records in associated tables via existing LINK columns.
This endpoint supports:
linkColumnIdPOST /noCo/api/v2/workspaces/{workspaceId}/tables/{workbook_id}/rows
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| workbook_id | UUID | ✅ Yes | workbook where the row will be created |
Requires Bearer JWT Token
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
{
"cellValues": {
"<columnName>": "<value>"
},
"linkRecords": [
{
"destinationRecordId": "integer",
"linkColumnId": "uuid"
}
]
}
| Field | Type | Required | Description |
|---|---|---|---|
| cellValues | object | ✅ Yes | Key-value map of column names and their values for the new row |
| cellValues.<columnName> | any | ❌ No | Value for a specific column — pass empty string or empty array if no value |
| linkRecords | array | ❌ No | List of link operations to perform when creating the row |
| linkRecords[].destinationRecordId | integer | ✅ Yes | PK of the record in the associated table to link to |
| linkRecords[].linkColumnId | UUID | ✅ Yes | ID of the LINK column that defines the relation |
This API uses OAuth 2.0 with the authorization code grant flow.
Workspace identifier
Target table identifier