← Tools Reference

Ninox

Ninox integration (Productivity, Data). Imported from open-connector.

API key12 toolshttps://api.ninox.com/v1
GET
ninox_list_workspaces
List Ninox workspaces available to the authenticated Personal Access Token.

/teams

GET
ninox_get_workspace
Get one Ninox workspace by workspace ID.

/teams/{teamId}

1 parameter
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
GET
ninox_list_databases
List Ninox databases inside one workspace.

/teams/{teamId}/databases

1 parameter
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
GET
ninox_get_database
Get Ninox schema metadata for one database.

/teams/{teamId}/databases/{databaseId}

2 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
GET
ninox_list_tables
List Ninox tables for one database.

/teams/{teamId}/databases/{databaseId}/tables

2 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
GET
ninox_get_table
Get Ninox schema metadata for one table.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}

3 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
GET
ninox_list_records
List records from one Ninox table.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/records

4 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
choiceStylestringoptionalHow Ninox should render choice or date values in the response.
GET
ninox_get_record
Get one Ninox record by record ID.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/records/{recordId}

6 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
recordIdintegerrequiredThe Ninox record identifier.
choiceStylestringoptionalHow Ninox should render choice or date values in the response.
stylestringoptionalHow Ninox should render choice or date values in the response.
POST
ninox_search_record
Find a single Ninox record by filters in one table.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/record

7 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
filtersobjectrequiredFilters keyed by Ninox field identifier or field name for single-record lookup.
stylestringoptionalHow Ninox should render choice or date values in the response.
dateStylestringoptionalHow Ninox should render choice or date values in the response.
choiceStylestringoptionalHow Ninox should render choice or date values in the response.
POST
ninox_save_records
Create new Ninox records or update existing ones in the same table using the native POST /records endpoint.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/records

4 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
recordsarrayrequiredThe records to create or update in Ninox.
DELETE
ninox_delete_record
Delete one Ninox record by record ID.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/records/{recordId}

4 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
recordIdintegerrequiredThe Ninox record identifier.
DELETE
ninox_delete_records
Delete multiple Ninox records from the same table.

/teams/{teamId}/databases/{databaseId}/tables/{tableId}/records

4 parameters
ParamTypeRequiredDescription
teamIdstringrequiredThe Ninox workspace identifier.
databaseIdstringrequiredThe Ninox database identifier.
tableIdstringrequiredThe Ninox table identifier.
recordIdsarrayrequiredThe Ninox record IDs to delete.