{ "opencollection": "1.0.0", "info": { "name": "Approval Reports API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": " ", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Reports", "type": "folder" }, "items": [ { "info": { "name": "Get a list of available reports", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/report", "headers": [ { "name": "Authorization", "value": "" }, { "name": "X-ApplicationKey", "value": "" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": " ", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Returns a list of all available reports including the report ID and name." }, { "info": { "name": "Get a specific report", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/report/:report_id", "headers": [ { "name": "Authorization", "value": "" }, { "name": "X-ApplicationKey", "value": "" } ], "params": [ { "name": "report_id", "value": "", "type": "path", "description": "The ID of the report. You can obtain it by getting the list of available reports." } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": " ", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Returns report data for the report ID specified by the user." } ] } ], "bundled": true }