{ "opencollection": "1.0.0", "info": { "name": "MemberClicks MC Professional Attributes Authorization API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://{orgId}.memberclicks.net/oauth/v1/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Authorization", "type": "folder" }, "items": [ { "info": { "name": "Obtain an OAuth 2.0 access token", "type": "http" }, "http": { "method": "POST", "url": "https://{orgId}.memberclicks.net/oauth/v1/token", "headers": [ { "name": "Authorization", "value": "" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "scope", "value": "" } ] } }, "docs": "Exchanges client credentials for an access token. The client ID and secret are Base64-encoded as clientId:clientSecret in an HTTP Basic Authorization header. Request scope \"read\", \"write\", or \"read write\"." } ] } ], "bundled": true }