aggcat 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +3 -3
- data/lib/aggcat/client.rb +1 -1
- data/lib/aggcat/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -21,7 +21,7 @@ gem 'aggcat'
|
|
|
21
21
|
|
|
22
22
|
## Start Guide
|
|
23
23
|
|
|
24
|
-
Register for [Customer Account Data](http://developer.intuit.com/agg-cat/index.html).
|
|
24
|
+
Register for [Intuit Customer Account Data](http://developer.intuit.com/agg-cat/index.html).
|
|
25
25
|
|
|
26
26
|
Get your OAuth data.
|
|
27
27
|
|
|
@@ -47,7 +47,7 @@ client = Aggcat::Client.new(
|
|
|
47
47
|
customer_id: 'scope for all requests'
|
|
48
48
|
)
|
|
49
49
|
|
|
50
|
-
# scope Aggcat client by customer id
|
|
50
|
+
# scope Aggcat client and all subsequent requests by customer id
|
|
51
51
|
Aggcat.scope(customer_id)
|
|
52
52
|
|
|
53
53
|
# get all supported financial institutions
|
|
@@ -62,7 +62,7 @@ Aggcat.discover_and_add_accounts(14007, username, password)
|
|
|
62
62
|
# get already aggregated financial account
|
|
63
63
|
Aggcat.account(account_id)
|
|
64
64
|
|
|
65
|
-
# you can set scope inline
|
|
65
|
+
# you can set scope inline for any request
|
|
66
66
|
Aggcat.scope(customer1).account(account_id)
|
|
67
67
|
|
|
68
68
|
# get all aggregated accounts
|
data/lib/aggcat/client.rb
CHANGED
data/lib/aggcat/version.rb
CHANGED