{ "opencollection": "1.0.0", "info": { "name": "Citizens Bank Accounts API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://api.citizensbank.com/oauth/authorize", "accessTokenUrl": "https://api.citizensbank.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "Get customer accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.citizensbank.com/accounts" }, "docs": "Retrieves a list of deposit accounts (Savings and Checking) for the authenticated customer." }, { "info": { "name": "Get account details", "type": "http" }, "http": { "method": "GET", "url": "https://api.citizensbank.com/accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "The unique account identifier" } ] }, "docs": "Retrieves detailed information for a specific deposit account." } ] } ], "bundled": true }