Records

Get records from a table

get

Retrieves paginated rows from a table with optional filtering and sorting

Authorizations
AuthorizationstringRequired

Enter your Workspace API key.

API keys can be generated and managed within the Workspace Integration settings in the Ninox app.

Path parameters
tableNameanyRequired

Table name

Example: contacts
moduleNameanyRequired

Module name

Example: crm
workspaceIdanyRequired

Workspace ID

Example: 5rdco4s18swu
Query parameters
offsetnumberOptional

Number of rows to skip (starts with 0)

limitnumberOptional

Maximum number of rows to return (1-100)

fieldsstringOptional

Comma-separated list of field names to include

sortstringOptional

Field name to sort by

filterstringOptional

Filter conditions as a JSON string (e.g., {"email": "[email protected]"})

Responses
200

Rows retrieved successfully

application/json
get
/api/v1/workspace/{workspaceId}/modules/{moduleName}/tables/{tableName}/records

Create records in a table

post

Creates new records in an existing table (max. 6MB payload size)

Authorizations
AuthorizationstringRequired

Enter your Workspace API key.

API keys can be generated and managed within the Workspace Integration settings in the Ninox app.

Path parameters
tableNameanyRequired

Table name

moduleNameanyRequired

Module name

workspaceIdanyRequired

Workspace ID

Body
Responses
post
/api/v1/workspace/{workspaceId}/modules/{moduleName}/tables/{tableName}/records

Delete records from a table

delete

Deletes existing records from a table in a single transaction. If any record id is invalid, does not exist, or deletion fails, all changes are rolled back.

Authorizations
AuthorizationstringRequired

Enter your Workspace API key.

API keys can be generated and managed within the Workspace Integration settings in the Ninox app.

Path parameters
tableNameanyRequired

Table name

moduleNameanyRequired

Module name

workspaceIdanyRequired

Workspace ID

Body
recordsinteger[] · min: 1Required

Array of record ids to delete

Responses
200

Records deleted successfully

application/json
delete
/api/v1/workspace/{workspaceId}/modules/{moduleName}/tables/{tableName}/records

Update records in a table

patch

Updates existing records in a table (max. 6MB payload size). Each record must include an id field referencing an existing record. The update is transactional — if any record fails validation or does not exist, all changes are rolled back.

Field type rules:

  • multi — must be an array of strings (e.g. ["Gold", "Silver"]). A plain string is not accepted.

  • choice — a single string (e.g. "Gold") or an array of strings.

  • booleantrue or false only; numeric 1/0 are not accepted.

  • number — a finite number or a numeric string (e.g. "42.5").

  • date / timestamp / appointment — ISO 8601 string or Unix timestamp (ms).

  • Any field may be set to null to clear its value.

Authorizations
AuthorizationstringRequired

Enter your Workspace API key.

API keys can be generated and managed within the Workspace Integration settings in the Ninox app.

Path parameters
tableNameanyRequired

Table name

moduleNameanyRequired

Module name

workspaceIdanyRequired

Workspace ID

Body
Responses
200

Records updated successfully

application/json
patch
/api/v1/workspace/{workspaceId}/modules/{moduleName}/tables/{tableName}/records

Import records from CSV file

post

Import records from a CSV file into an existing table.

The endpoint accepts multipart/form-data with:

  • A CSV file (max 50 MB)

  • Optional parsing and import options

Auto-mapping: By default, CSV columns are automatically mapped to table fields by matching column header names to field names (case-insensitive).

Import Modes:

  • append: Always create new records (default)

  • update: Only update existing records (requires key field mappings)

  • upsert: Update existing records or create new ones (requires key field mappings)

Field Mappings: Optionally provide explicit mappings to control which CSV columns map to which table fields, and which fields are used as keys for update/upsert operations.

The entire import is processed within a single transaction - if any record fails to import, all changes are rolled back.

Authorizations
AuthorizationstringRequired

Enter your Workspace API key.

API keys can be generated and managed within the Workspace Integration settings in the Ninox app.

Path parameters
tableNameanyRequired

Table name

moduleNameanyRequired

Module name

workspaceIdanyRequired

Workspace ID

Body
filestring · binaryRequired

CSV file to import (max 50 MB)

hasHeaderbooleanOptional

Whether the CSV file has a header row

Default: true
delimiterstringOptional

CSV delimiter character (auto-detected if not specified)

quoteCharstringOptional

CSV quote character

Default: "
encodingstring · enumOptional

CSV file encoding

Default: utf8Possible values:
importModestring · enumOptional

Import mode: append (insert all), update (update existing only), upsert (insert or update)

Default: appendPossible values:
numberFormatstring · enumOptional

Number format for parsing numeric values

Default: usPossible values:
batchSizeinteger · min: 10 · max: 200Optional

Number of records to process per batch

Default: 100
mappingsstringOptional

JSON array of field mappings: [{"csvColumnName": "Name", "fieldName": "name", "updatePolicy": "key"}]

Responses
post
/api/v1/workspace/{workspaceId}/modules/{moduleName}/tables/{tableName}/records/import/csv

Last updated

Was this helpful?