PaginationLinks
Standard [JSON API pagination links](https://jsonapi.org/format/#fetching-pagination). Each link repeats the query that produced the collection and carries its own `limit` and `offset`. Follow the link rather than building the next URI. The example below is the second of three pages.
Fields
selfstring uriThe current page of data.
firststring uriThe first page of data.
laststring uri nullableThe last page of data. Null when the whole collection fits on one page.
prevstring uri nullableThe previous page of data. Null on the first page.
nextstring uri nullableThe next page of data. Null on the last page.
Used by
- Get Payment Methods
/paymentmethods - Get Regions
/regions - List Payments
/payments - List Transactions for Payment
/payments/{id}/transactions - List Refunds
/refunds - List Settlements
/settlements - List Settlement Line Items
/settlements/{id}/lineitems - List Transactions
/transactions - Get Refunds
/transactions/{id}/refunds - List Subscriptions
/subscriptions - List Subscription Transactions
/subscriptions/{subscriptionId}/transactions - List Webhook Subscriptions
/webhooks