{ "opencollection": "1.0.0", "info": { "name": "Caspio REST Applications Tables API", "version": "3.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tables", "type": "folder" }, "items": [ { "info": { "name": "List all tables in the account", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.caspio.com/rest/v3/tables" }, "docs": "List all tables in the account" }, { "info": { "name": "Get a table's metadata", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName", "params": [ { "name": "tableName", "value": "", "type": "path" } ] }, "docs": "Get a table's metadata" }, { "info": { "name": "List fields (columns) for a table", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName/fields", "params": [ { "name": "tableName", "value": "", "type": "path" } ] }, "docs": "List fields (columns) for a table" }, { "info": { "name": "Query table records", "type": "http" }, "http": { "method": "GET", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName/records", "params": [ { "name": "tableName", "value": "", "type": "path" }, { "name": "q.select", "value": "", "type": "query" }, { "name": "q.where", "value": "", "type": "query" }, { "name": "q.orderBy", "value": "", "type": "query" }, { "name": "q.groupBy", "value": "", "type": "query" }, { "name": "q.limit", "value": "", "type": "query" }, { "name": "q.pageNumber", "value": "", "type": "query" }, { "name": "q.pageSize", "value": "", "type": "query" } ] }, "docs": "Query table records" }, { "info": { "name": "Insert one record into a table", "type": "http" }, "http": { "method": "POST", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName/records", "params": [ { "name": "tableName", "value": "", "type": "path" }, { "name": "response", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Insert one record into a table" }, { "info": { "name": "Update table records matching a where clause", "type": "http" }, "http": { "method": "PUT", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName/records", "params": [ { "name": "tableName", "value": "", "type": "path" }, { "name": "q.where", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update table records matching a where clause" }, { "info": { "name": "Delete table records matching a where clause", "type": "http" }, "http": { "method": "DELETE", "url": "https://{account}.caspio.com/rest/v3/tables/:tableName/records", "params": [ { "name": "tableName", "value": "", "type": "path" }, { "name": "q.where", "value": "", "type": "query" } ] }, "docs": "Delete table records matching a where clause" } ] } ], "bundled": true }