List payments
Use this method to return a paginated list of payments.
Note: If you want to view a specific payment and you have its paymentId, use our Retrieve Payment method.
Use query parameters to filter the list of results that we return, for example, to search for payments for a customer, a tip mode, or a date range.
Our gateway returns the following information about each payment in the list:
- Order details, including the transaction amount and when it was processed.
- Payment card details, including the masked card number, expiry date, and payment method.
- Cardholder details, including their contact information and shipping address.
- Payment details, including the payment type, status, and response.
For each transaction, we also return the paymentId and an optional secureTokenId, which you can use to perform follow-on actions.
Headers
Authorization
Bearer authentication of the form Bearer <token>, where token is your auth token.
Query parameters
processingTerminalId
Filter by terminal ID.
orderId
Filter payments by order ID.
operator
Filter payments by operator.
cardholderName
Filter payments by the cardholder’s name.
first6
Filter payments by the first six digits of the card number that the customer used in the transaction.
last4
Filter payments by the last four digits of the card number that the customer used in the transaction.
tender
Filter by tender type.
Allowed values:
tipMode
Filter payments by tip.
Allowed values:
type
Filter payments by transaction type.
Allowed values:
status
Filter payments by the status of the transaction.
dateFrom
Filter by payments that the processor processed after a specific date. The date format follows the ISO 8601 standard.
dateTo
Filter by payments that the processer processed before a specific date. The date format follows the ISO 8601 standard.
settlementState
Filter payments by the settlement status of the transaction.
Allowed values:
settlementDate
Filter by payments that the processor settled on a specific date in the format YYYY-MM-DD.
paymentLinkId
Unique identifier that our gateway assigned to the payment link.
before
Points to the resource identifier that you want to receive your results before. Typically, this is the first resource on the previous page.
after
Points to the resource identifier that you want to receive your results after. Typically, this is the last resource on the previous page.
limit
States the total amount of results the response is limited to.
Response
Successful request. Returns a list of payments.
limit
Maximum number of results that we return for each page.
count
Number of results that we returned.
hasMore
Indicates that further results are available.
data
Array of transactions.
links
Reference links to navigate to the previous page of results, or to the next page of results.