Purpose:
Deletes one or more rows from a workbook within a workspace.
DELETE /noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/rows
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| workbookId | UUID | ✅ Yes | Workbook identifier |
Requires authentication using:
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
{
"rowIds": []
}
| Field | Type | Required | Description |
|---|---|---|---|
| rowIds | array | ✅ Yes | List of row identifiers to delete |
curl -X DELETE 'https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/rows' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
--data-raw '{"rowIds":[40]}'
Deletes one or more workbook rows.
Supports bulk deletion using rowIds array.
Validation Rules:
• Workbook must exist within workspace.
• User must have write/delete permission.
• Provided rowIds must be valid.