GET /v1/user/1/monetary-account/1/payment
. You can choose the maximum amount of items to be included in the response by adding a count
query parameter with the number of items you want per page to the URL. GET /v1/user/1/monetary-account/1/payment?count=25
count
is given, the default count is set to 10. The maximum count
you can set is 200.Pagination
object will be added to the response. It will contain the URLs you need to use to get the next or previous set of items. You can also use these URLs to navigate through the listed resources. Pagination
object looks like:newer_url
value can be used to get the next page. newer_id
is always the id
of the last item in the current page. newer_url
is null
, there are no more items to be listed on the next page. The next page thus does not exist.older_url
value can be used to get the previous page. older_id
is always the id
of the first item in the current page. older_url
is null
, there are no items on the previous page. The previous page thus does not exist.future_url
can be used to refresh the list and check for new items that didn't exist when the listing was requested. newer_id
will always be the id
of the last item in the current page. future_url
will be null
if newer_id
is not also the id
of the latest item.