svb-accounts
Advanced tools
Comparing version 1.0.1 to 1.1.1
@@ -50,3 +50,3 @@ // | ||
} | ||
this.client.get('/accounts/' + accountID + '/transactions', filters.join('&'), (err, body) => { | ||
this.client.get('/v1/accounts/' + accountID + '/transactions', filters.join('&'), (err, body) => { | ||
if (err) { | ||
@@ -53,0 +53,0 @@ return callback(err); |
{ | ||
"name": "svb-accounts", | ||
"version": "1.0.1", | ||
"version": "1.1.1", | ||
"description": "Silicon Valley Bank API helper", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -29,3 +29,10 @@ ## svb-accounts | ||
Accounts.transactions(accountID, {}, (err, allTransactions) => { }); | ||
Accounts.transactions(accountID, {}, (err, data) => { | ||
// data.transactions = [] | ||
// data.links = { | ||
// first: '', | ||
// next: '' | ||
// } | ||
} | ||
}); | ||
// optional filters | ||
@@ -32,0 +39,0 @@ filters = { |
3695
48