{ "opencollection": "1.0.0", "info": { "name": "Tango RaaS Accounts API", "version": "v2" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "List all accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.tangocard.com/raas/v2/accounts" }, "docs": "Retrieve a list of all accounts across all customers." }, { "info": { "name": "Get an account", "type": "http" }, "http": { "method": "GET", "url": "https://api.tangocard.com/raas/v2/accounts/:accountIdentifier", "params": [ { "name": "accountIdentifier", "value": "", "type": "path" } ] }, "docs": "Retrieve a single account by identifier." }, { "info": { "name": "List customer accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.tangocard.com/raas/v2/customers/:customerIdentifier/accounts", "params": [ { "name": "customerIdentifier", "value": "", "type": "path" } ] }, "docs": "Retrieve all accounts for a specific customer." }, { "info": { "name": "Create a customer account", "type": "http" }, "http": { "method": "POST", "url": "https://api.tangocard.com/raas/v2/customers/:customerIdentifier/accounts", "params": [ { "name": "customerIdentifier", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new account for a customer." }, { "info": { "name": "Update a customer account", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.tangocard.com/raas/v2/customers/:customerIdentifier/accounts/:accountIdentifier", "params": [ { "name": "customerIdentifier", "value": "", "type": "path" }, { "name": "accountIdentifier", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update an account for a customer." } ] } ], "bundled": true }