{ "opencollection": "1.0.0", "info": { "name": "Kameleoon Automation Experiments OAuth API", "version": "1.0.0" }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Request an OAuth 2.0 access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.kameleoon.com/oauth/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "refresh_token", "value": "" } ] } }, "docs": "Exchange client credentials (or an authorization code) for an OAuth 2.0 access token. Client Credentials access tokens are valid for two hours." }, { "info": { "name": "Request an OAuth 2.0 authorization code", "type": "http" }, "http": { "method": "GET", "url": "https://api.kameleoon.com/oauth/authorize", "params": [ { "name": "client_id", "value": "", "type": "query" }, { "name": "redirect_uri", "value": "", "type": "query" }, { "name": "response_type", "value": "", "type": "query" }, { "name": "scope", "value": "", "type": "query" } ] }, "docs": "Display the Kameleoon consent screen and request an authorization code." } ] } ], "bundled": true }