v1
latestOpenAPI 3.0.02026-07-24103118224.7 KBPayment
Get the list of payments
Retrieves a paginated list of payments for the authenticated user
get/api/payment
Query parameters
currencystring
The currency of the payment, this currency will refer to product list prices
statusobject
The status of the payment, exhaustive list of status to come
subscription_idstring
The subscription ID to filter payments associated with a specific subscription
customerIdstring
The customer ID to filter payments by customer
customerEmailstring
The customer email to filter payments by customer
pagenumber
The page number
limitnumber
The number of items per page
Response
Example response
{
"data": [
{
"lastDepositAttempt": {
"status": "succeeded",
"amount": 10000,
"paymentMethod": "CARD",
"error": "card_declined",
"attemptedAt": "2025-10-24T14:35:00Z"
},
"taxRateInPercentage": 20,
"pricingMode": "TAX_EXCLUSIVE",
"lastThreeDsAttempt": {
"status": "succeeded",
"cardBrand": "Visa",
"createdDate": "2025-11-12T21:51:33.530Z"
},
"invoiceUrl": "https://api.inflowpay.com/invoice/download?token=abc123xyz",
"customerPaymentMethod": {
"id": "cpm_abc123",
"type": "card",
"cardBrand": "visa",
"cardLast4": "4242"
}
}
]
}