{ "opencollection": "1.0.0", "info": { "name": "Services Alerts Code Redaction API", "version": "v1" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Code Redaction", "type": "folder" }, "items": [ { "info": { "name": "List all environment code redaction settings", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all environment code exclusions and inclusions" }, { "info": { "name": "List all code exclusions", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all code exclusions" }, { "info": { "name": "Add a bulk of code exclusions", "type": "http" }, "http": { "method": "POST", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a bulk of code exclusions" }, { "info": { "name": "List all excluded classes", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/classes", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all excluded classes" }, { "info": { "name": "Retrieve an excluded class", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ] }, "docs": "Retrieve an excluded class" }, { "info": { "name": "Add a class to the exclusion list", "type": "http" }, "http": { "method": "PUT", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a class to the exclusion list. The body class name must match the resource identifier" }, { "info": { "name": "Remove a class from exclusion", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ] }, "docs": "Remove a class from the exclusion list" }, { "info": { "name": "List all excluded packages", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/packages", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all excluded packages" }, { "info": { "name": "Retrieve an excluded package", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ] }, "docs": "Retrieve an excluded package" }, { "info": { "name": "Add a package to the exclusion list", "type": "http" }, "http": { "method": "PUT", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a package to the exclusion list. The body package name must match the resource identifier" }, { "info": { "name": "Remove a package from the exclusion list", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/exclude/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ] }, "docs": "Remove a package from the exclusion list" }, { "info": { "name": "List all code inclusions", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all code inclusions" }, { "info": { "name": "Add a bulk of code inclusions", "type": "http" }, "http": { "method": "POST", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a bulk of code inclusions" }, { "info": { "name": "List all included classes", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/classes", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all included classes" }, { "info": { "name": "Retrieve an included class", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ] }, "docs": "Retrieve an included class" }, { "info": { "name": "Add a class to the inclusion list", "type": "http" }, "http": { "method": "PUT", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a class to the inclusion list. The body class name must match the resource identifier" }, { "info": { "name": "Remove a class from the inclusion list", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/classes/:class_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "class_name", "value": "", "type": "path", "description": "Fully qualified Java class name" } ] }, "docs": "Remove a class from the inclusion list" }, { "info": { "name": "List all included packages", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/packages", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" } ] }, "docs": "List all included packages" }, { "info": { "name": "Retrieve an included package", "type": "http" }, "http": { "method": "GET", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ] }, "docs": "Retrieve an included package" }, { "info": { "name": "Add a package to the inclusion list", "type": "http" }, "http": { "method": "PUT", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a package to the inclusion list. The body package name must match the resource identifier" }, { "info": { "name": "Remove a package from the inclusion list", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.overops.com/api/v1/services/:env_id/settings/code-redaction/include/packages/:package_name", "params": [ { "name": "env_id", "value": "", "type": "path", "description": "Environment ID to use (e.g. S1234)" }, { "name": "package_name", "value": "", "type": "path", "description": "Fully qualified Java package name" } ] }, "docs": "Remove a package from the inclusion list" } ] } ], "bundled": true }