N8n · Capability
n8n Public API — DataTable
n8n Public API — DataTable. 13 operations. Lead operation: List all data tables. Self-contained Naftiko capability covering one N8n business surface.
What You Can Do
GET
Listdatatables
— List all data tables
/v1/data-tables
POST
Createdatatable
— Create a data table
/v1/data-tables
GET
Getdatatable
— Get a data table
/v1/data-tables/{datatableid}
DELETE
Deletedatatable
— Delete a data table
/v1/data-tables/{datatableid}
PATCH
Updatedatatable
— Update a data table
/v1/data-tables/{datatableid}
GET
Listdatatablecolumns
— List columns in a data table
/v1/data-tables/{datatableid}/columns
POST
Adddatatablecolumn
— Add a column to a data table
/v1/data-tables/{datatableid}/columns
DELETE
Deletedatatablecolumn
— Delete a column from a data table
/v1/data-tables/{datatableid}/columns/{columnid}
GET
Listdatatablerows
— List rows in a data table
/v1/data-tables/{datatableid}/rows
POST
Insertdatatablerows
— Insert rows into a data table
/v1/data-tables/{datatableid}/rows
POST
Deletedatatablerows
— Delete rows in a data table
/v1/data-tables/{datatableid}/rows/delete
POST
Updatedatatablerows
— Update rows in a data table
/v1/data-tables/{datatableid}/rows/update
POST
Upsertdatatablerows
— Upsert rows in a data table
/v1/data-tables/{datatableid}/rows/upsert
MCP Tools
list-all-data-tables
List all data tables
read-only
idempotent
create-data-table
Create a data table
get-data-table
Get a data table
read-only
idempotent
delete-data-table
Delete a data table
idempotent
update-data-table
Update a data table
idempotent
list-columns-data-table
List columns in a data table
read-only
idempotent
add-column-data-table
Add a column to a data table
delete-column-data-table
Delete a column from a data table
idempotent
list-rows-data-table
List rows in a data table
read-only
idempotent
insert-rows-data-table
Insert rows into a data table
delete-rows-data-table
Delete rows in a data table
update-rows-data-table
Update rows in a data table
upsert-rows-data-table
Upsert rows in a data table