{ "opencollection": "1.0.0", "info": { "name": "Podio Applications OAuth API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://podio.com/oauth/authorize", "accessTokenUrl": "https://api.podio.com/oauth/token/v2", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Exchange credentials for an access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.podio.com/oauth/token/v2", "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": "" }, { "name": "username", "value": "" }, { "name": "password", "value": "" }, { "name": "app_id", "value": "" }, { "name": "app_token", "value": "" } ] } }, "docs": "Podio's OAuth 2.0 token endpoint. Supports `authorization_code`,\n`refresh_token`, `password`, and `app` grants.\n" } ] } ], "bundled": true }