{ "opencollection": "1.0.0", "info": { "name": "Ninox Public Fields Tables API", "version": "1.0.0" }, "items": [ { "info": { "name": "Tables", "type": "folder" }, "items": [ { "info": { "name": "List all tables in a module", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/workspace/:workspaceId/modules/:moduleName/tables", "params": [ { "name": "moduleName", "value": "", "type": "path", "description": "Module name" }, { "name": "workspaceId", "value": "", "type": "path", "description": "Workspace ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves all tables within a module" }, { "info": { "name": "Create a table", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/workspace/:workspaceId/modules/:moduleName/tables", "params": [ { "name": "moduleName", "value": "", "type": "path", "description": "Module name" }, { "name": "workspaceId", "value": "", "type": "path", "description": "Workspace ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a new table in a module" }, { "info": { "name": "Get a specific table", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/workspace/:workspaceId/modules/:moduleName/tables/:tableName", "params": [ { "name": "moduleName", "value": "", "type": "path", "description": "Module name" }, { "name": "tableName", "value": "", "type": "path", "description": "Table name" }, { "name": "workspaceId", "value": "", "type": "path", "description": "Workspace ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves detailed information about a specific table, including its fields" }, { "info": { "name": "Update a table", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/v1/workspace/:workspaceId/modules/:moduleName/tables/:tableName", "params": [ { "name": "moduleName", "value": "", "type": "path", "description": "Module name" }, { "name": "tableName", "value": "", "type": "path", "description": "Table name" }, { "name": "workspaceId", "value": "", "type": "path", "description": "Workspace ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates an existing table in a module" }, { "info": { "name": "Delete a table", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/workspace/:workspaceId/modules/:moduleName/tables/:tableName", "params": [ { "name": "moduleName", "value": "", "type": "path", "description": "Module name" }, { "name": "tableName", "value": "", "type": "path", "description": "Table name" }, { "name": "workspaceId", "value": "", "type": "path", "description": "Workspace ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes a table in a module" } ] } ], "bundled": true }