Get Transactions
To get your transactions, make a POST request to the following endpoint:
Request
Include your API key in the Authorization header of the request, as described in the Authorization section.
Response
A successful response to the get transactions endpoint will return the results in the JSON format. The response will include various details about the transactions and any associated details including pagination details.
POST
https://api.peach-in.com/v4/transactions/search
Request Body
startDate
Date (Timestamp / ISO string )
Used to specify the start date for retrieving transactions
30 days ago
endDate
Date (Timestamp / ISO string )
Used to specify the end date for retrieving transactions
today
limit
number
The Maximum rows return is 1000
100
paginationKey
object
Used for pagination in scenarios where there are large sets of transaction data and the response needs to be split into multiple pages
campaignId
string
Used to filter out result by campaignId
Example Request Body
If the response includes a paginationKey, it indicates additional results are available. To retrieve the next set of results, include the paginationKey in your subsequent request.
Last updated