{ "opencollection": "1.0.0", "info": { "name": "NocoDB Data Attachments Tables API", "version": "2.0" }, "request": { "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "items": [ { "info": { "name": "Tables", "type": "folder" }, "items": [ { "info": { "name": "List tables", "type": "http" }, "http": { "method": "GET", "url": "https://app.nocodb.com/api/v1/meta/bases/:baseId/tables", "params": [ { "name": "baseId", "value": "", "type": "path", "description": "Unique identifier of the NocoDB base" } ], "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "docs": "List all tables within a specific base." }, { "info": { "name": "Create table", "type": "http" }, "http": { "method": "POST", "url": "https://app.nocodb.com/api/v1/meta/bases/:baseId/tables", "params": [ { "name": "baseId", "value": "", "type": "path", "description": "Unique identifier of the NocoDB base" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "docs": "Create a new table within a base." }, { "info": { "name": "Read table", "type": "http" }, "http": { "method": "GET", "url": "https://app.nocodb.com/api/v1/meta/tables/:tableId", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "Unique identifier of the NocoDB table" } ], "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "docs": "Retrieve details of a specific table including its fields and views." }, { "info": { "name": "Update table", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.nocodb.com/api/v1/meta/tables/:tableId", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "Unique identifier of the NocoDB table" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "docs": "Update metadata of a specific table." }, { "info": { "name": "Delete table", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.nocodb.com/api/v1/meta/tables/:tableId", "params": [ { "name": "tableId", "value": "", "type": "path", "description": "Unique identifier of the NocoDB table" } ], "auth": { "type": "apikey", "key": "xc-token", "value": "{{xc-token}}", "placement": "header" } }, "docs": "Delete a specific table and all its records." } ] } ], "bundled": true }