{ "opencollection": "1.0.0", "info": { "name": "Oracle REST Data Services (ORDS) REST AutoREST API", "version": "25.4" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "AutoREST", "type": "folder" }, "items": [ { "info": { "name": "Get all REST enabled objects", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/", "params": [ { "name": "offset", "value": "", "type": "query", "description": "The index of the first item to return (0-based). Default is 0." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return per page. Default is 25." } ] }, "docs": "Retrieves a paginated list of all database objects that have been REST-enabled through AutoREST in the current schema." }, { "info": { "name": "REST enable an object", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/", "body": { "type": "json", "data": "{}" } }, "docs": "Enables automatic REST access for a database table or view. AutoREST generates standard CRUD endpoints for the specified object without requiring manual module, template, or handler definitions." }, { "info": { "name": "Get a REST enabled object", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Retrieves details of a specific REST-enabled object by its identifier." }, { "info": { "name": "Update or disable a REST enabled object", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the configuration of a REST-enabled object or disables REST access for the object." }, { "info": { "name": "Get a REST enabled object metadata", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/:id/metadata", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Retrieves the metadata (column definitions, types, constraints) for a REST-enabled database object." }, { "info": { "name": "Get count of all REST enabled objects", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/autorest/summary" }, "docs": "Retrieves a summary count of all REST-enabled objects in the current schema." } ] } ], "bundled": true }