You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Changed response structure. All responses are now an object with two attributes: `data` containing what was previously the entire response and `meta` containing additional properties about a request.
Transactions are a paged resource. The response object will contain properties `meta.next` and `meta.previous` which can be supplied to subsequent invocations of `#transactions` to fetch additional results.
188
+
189
+
`#transactions` accepts an optional second parameter, `options` which may define the follow keys to narrow results:
190
+
191
+
###### options
192
+
193
+
*`cursor`: An API cursor to fetch a specific set of results
194
+
*`start`: An ISO-8601 datetime string to filter only transactions after `start`
195
+
*`end`: An ISO-8601 datetime string to filter only transactions before `end`
0 commit comments