{ "opencollection": "1.0.0", "info": { "name": "Oracle Database Oracle Cloud Infrastructure Database APEX Bulk Operations API", "version": "20160918" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Bulk Operations", "type": "folder" }, "items": [ { "info": { "name": "Oracle Database Bulk insert documents", "type": "http" }, "http": { "method": "POST", "url": "https://database.{region}.oraclecloud.com/20160918/custom-actions/insert/:collection", "params": [ { "name": "collection", "value": "", "type": "path", "description": "The name of the SODA collection" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Inserts multiple documents into the collection in a single operation. Documents are provided as a JSON array. Server-assigned keys are generated for each document." }, { "info": { "name": "Oracle Database Bulk delete documents by filter", "type": "http" }, "http": { "method": "POST", "url": "https://database.{region}.oraclecloud.com/20160918/custom-actions/delete/:collection", "params": [ { "name": "collection", "value": "", "type": "path", "description": "The name of the SODA collection" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Deletes multiple documents matching a QBE filter specification. Returns the count of deleted documents." }, { "info": { "name": "Oracle Database Truncate all documents from collection", "type": "http" }, "http": { "method": "POST", "url": "https://database.{region}.oraclecloud.com/20160918/custom-actions/truncate/:collection", "params": [ { "name": "collection", "value": "", "type": "path", "description": "The name of the SODA collection" } ] }, "docs": "Removes all documents from the collection without deleting the collection itself. This is faster than deleting documents one by one or with a filter." }, { "info": { "name": "Oracle Database Bulk update documents by filter", "type": "http" }, "http": { "method": "POST", "url": "https://database.{region}.oraclecloud.com/20160918/custom-actions/update/:collection", "params": [ { "name": "collection", "value": "", "type": "path", "description": "The name of the SODA collection" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates multiple documents matching a QBE filter using JSON Patch operations specified in the $patch field of the request body." } ] } ], "bundled": true }