{ "opencollection": "1.0.0", "info": { "name": "Oracle REST Data Services (ORDS) REST AutoREST Templates API", "version": "25.4" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Templates", "type": "folder" }, "items": [ { "info": { "name": "Get all REST module templates", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/templates/", "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 REST module templates defined in the current schema." }, { "info": { "name": "Create a REST module template", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/templates/", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new REST module template associated with a specific module. A template defines a URI pattern within a module and serves as a container for one or more handlers." }, { "info": { "name": "Get a REST module template", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/templates/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Retrieves details of a specific REST module template by its identifier." }, { "info": { "name": "Update a REST module template", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/templates/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing REST module template including its URI pattern, priority, and ETag configuration." }, { "info": { "name": "Delete a REST module template", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}:{port}/ords/_/db-api/stable/ords/rest/templates/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the resource" } ] }, "docs": "Deletes a specific REST module template and all of its associated handlers." } ] } ], "bundled": true }