List Transactions
Learn to retrieve information about transactions.
In this lesson, we’ll learn to get a list of all transactions and how to get the details of a specific transaction.
Get all transactions
We can get a list of all transactions by making a GET
request to the {BASE_URL}/transactions
endpoint. This endpoint allows us to filter the visibility of the response fields if necessary. This endpoint also supports pagination, which allows us to retrieve a specific range of resources from a complete and sorted list of the returned resources.
Note: This endpoint only retrieves transactions that have either a “PENDING” or “COMPLETION” status. It also only provides transactions conducted within the last 30 days. To retrieve transactions conducted outside this period, we must specify the optional query parameters,
start_date
andend_date
.
Request parameters
The endpoint above uses the following parameters:
Get hands-on with 1300+ tech skills courses.