{ "opencollection": "1.0.0", "info": { "name": "Dwolla API - Tokens", "version": "2.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "tokens", "type": "folder" }, "items": [ { "info": { "name": "Create an application access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.dwolla.com/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" } ] } }, "docs": "Generate an application access token using OAuth 2.0 client credentials flow for server-to-server authentication. Requires client ID and secret sent via Basic authentication header with grant_type=client_credentials in the request body. Returns a bearer access token with expiration time for authenticating API requests scoped to your application. Essential for secure API access." } ] } ], "bundled": true }