Transactions
List all transactions
Search and retrieve payment transactions. Filter by customer, product, date range, and status.
get/v1/transactions/search
Query parameters
customer_idstring
Example:cust_1234567890
Filter transactions by customer ID.
order_idstring
Example:ord_1234567890
Filter transactions by order ID.
product_idstring
Example:prod_1234567890
Filter transactions by product ID.
page_numbernumber
Example:1
The page number for pagination.
page_sizenumber
Example:10
The number of items per page.
Response
Successfully retrieved transactions
Example response
{
"items": [
{
"object": "transaction",
"amount": 2000,
"amount_paid": 2000,
"discount_amount": 2000,
"currency": "USD",
"tax_country": "US",
"tax_amount": 2000,
"refunded_amount": 2000
}
],
"pagination": {
"current_page": 1,
"next_page": 2
}
}