{ "opencollection": "1.0.0", "info": { "name": "Podbean Analytics OAuth API", "version": "v1" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.podbean.com/v1/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Request an access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.podbean.com/v1/oauth/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "refresh_token", "value": "" } ] }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "OAuth 2.0 token endpoint. Use HTTP Basic with client_id /\nclient_secret and POST `grant_type=client_credentials`.\n" }, { "info": { "name": "Request per-podcast access tokens", "type": "http" }, "http": { "method": "POST", "url": "https://api.podbean.com/v1/oauth/multiplePodcastsToken", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "podcast_id", "value": "" } ] }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Returns a map of per-podcast access tokens for accounts with\nmultiple podcasts under the same Podbean app.\n" } ] } ], "bundled": true }