node-red-contrib-blue-bank
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "node-red-contrib-blue-bank", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "A node exposing the Blue Bank #BankOfApis", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
# node-red-contrib-blue-bank | ||
Exposes the Blue Bank #BankOfApis | ||
See the [Blue Bank Developer Portal](https://bluebank.portal.azure-api.net/) for more information. | ||
## Install | ||
Run the following command in the root directory of your Node-RED install: | ||
npm install node-red-contrib-blue-bank | ||
## Usage | ||
* Sign up for the [Blue Bank Developer Portal](https://bluebank.portal.azure-api.net/). | ||
* Subscribe to [Blue Bank v0.7 API](https://bluebank.portal.azure-api.net/products/57fd074959546913d84cc466) | ||
* Create [dummy bank accounts](https://bb-customers.azurewebsites.net/BankAccounts) | ||
## Methods | ||
All methods require: | ||
* `Subscription Key` | ||
* Found under [Your Subscriptions, Primary Key](https://bluebank.portal.azure-api.net/developer) | ||
* `Authorization Token` | ||
* Click Get Bearer Token [here](https://bb-customers.azurewebsites.net/) | ||
**Get Account** `/accounts/{id} - GET` | ||
This returns a full Account object for the given id. | ||
Extra Requirements: | ||
* `Account ID` | ||
**Get Accounts** `/customers/{id}/accounts - GET` | ||
Use this call to enumerate the list of accounts for the specified user. | ||
Extra Requirements: | ||
* `Customer ID` | ||
**Get Transactions** `/accounts/{id}/transactions - GET` | ||
Returns a set of Transaction objects for the specified account. | ||
Extra Requirements: | ||
* `Account ID` | ||
**Get Customer** `/customers/{id} - GET` | ||
Use this call to return a specific Customer object, if you know the id. | ||
Extra Requirements: | ||
* `Customer ID` | ||
**Get Customers** `/customers - GET` | ||
This call will return a collection of Customer objects which the currently authenticated user is allowed to see. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20648
63