GET/account_transfers

List Account Transfers

Lists Account Transfers, with optional filters for the originating Account, idempotency key, and creation time. Use cursor and limit to paginate the results; limit defaults to 100 and cannot exceed 100.

8 parameters
cursorstringoptional
Cursor identifying the position after which to return the next page of entries.
limitintegeroptional
Maximum number of Account Transfers to return. Must be at least 1 and defaults to 100 when omitted.
Default:100
account_idstringoptional
Filter Account Transfers to those originating from the specified Account.
idempotency_keystringoptional
Filter by the idempotency key associated with an Account Transfer. Must be 1 to 200 characters.
created_at.afterstringoptional
Return results after this ISO 8601 timestamp.
created_at.beforestringoptional
Return results before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return results on or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return results on or before this ISO 8601 timestamp.

3 status codes
200Returns a paginated list of Account Transfer objects and a `next_cursor` for retrieving the next page.
dataarray<AccountTransfer>required
The contents of the list.
next_cursorstringrequired
A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.
4XXReturned when the request encounters a client error.
5XXReturned when the service encounters a server error.

Error handling

limit must be at least 1 and no more than 100, and idempotency_key must be 1 to 200 characters. Creation time filters must be valid ISO 8601 timestamps.