Skip to main content
POST
/
noCo
/
api
/
v2
/
workspaces
/
{workspaceId}
/
tables
/
{workbookId}
/
rows
/
bulk
Add Rows (Bulk)
curl --request POST \
  --url https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/rows/bulk \
  --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"
    }
  },
  {
    "cellValues": {
      "first_name": "Jane",
      "years_of_experience": 3,
      "is_active": false,
      "start_date": "2023-06-01T05: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 Multiple Rows with Data