{ "opencollection": "1.0.0", "info": { "name": "Oracle Integration Developer Adapters Lookups API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://{idcs-url}/oauth2/v1/authorize", "accessTokenUrl": "https://{idcs-url}/oauth2/v1/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Lookups", "type": "folder" }, "items": [ { "info": { "name": "Oracle Integration List Lookups", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.integration.ocp.oraclecloud.com/ic/api/integration/v1/lookups", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return." }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip before returning results." } ] }, "docs": "Retrieve a list of all lookup tables." }, { "info": { "name": "Oracle Integration Create Lookup", "type": "http" }, "http": { "method": "POST", "url": "https://{instance}.integration.ocp.oraclecloud.com/ic/api/integration/v1/lookups", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new lookup table." }, { "info": { "name": "Oracle Integration Get Lookup", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.integration.ocp.oraclecloud.com/ic/api/integration/v1/lookups/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Lookup name." } ] }, "docs": "Retrieve a specific lookup by name." }, { "info": { "name": "Oracle Integration Update Lookup", "type": "http" }, "http": { "method": "PUT", "url": "https://{instance}.integration.ocp.oraclecloud.com/ic/api/integration/v1/lookups/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Lookup name." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing lookup table." }, { "info": { "name": "Oracle Integration Delete Lookup", "type": "http" }, "http": { "method": "DELETE", "url": "https://{instance}.integration.ocp.oraclecloud.com/ic/api/integration/v1/lookups/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Lookup name." } ] }, "docs": "Delete a lookup table." } ] } ], "bundled": true }