Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbookId}
/
rows
Add Row
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/rows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cellValues": {
    "first_name": "John",
    "years_of_experience": 5,
    "is_active": true,
    "start_date": "2024-02-18T05:00:00+00:00"
  }
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

workspaceId
string
required
workbookId
string
required

Body

application/json
cellValues
object
required

Response

200

Add Row with Data