Payment Activity Page
Available via: Dashboard and API
Dashboard View
The Payments page in your Inflow Dashboard shows all transactions across your account.
What You See
| Column | Description |
|---|---|
| Payment ID | Unique identifier for the payment |
| Customer | Customer email address |
| Amount | Payment amount (with currency) |
| Status | Current payment status |
| Date | When the payment was created |
| Payment Method | Open Banking or Card |
Filters
Filter payments by:
- Status — INITIATION, CHECKOUT_PENDING, CHECKOUT_SUCCESS, PAYMENT_RECEIVED, PAYMENT_SUCCESS, PAYMENT_FAILED, PARTIAL_REFUNDED, FULLY_REFUNDED, REFUND_PENDING, REFUND_FAILED
- Currency — EUR, USD
- Date range — Custom start and end dates
- Payment method — Open Banking, Card
Search
Use the global search to find payments by:
- Payment ID
- Customer email
- Link ID
Export CSV
Click Export to download a CSV file of your payment data. This is useful for:
- Accounting reconciliation
- Revenue reporting
- Customer analysis
Analytics
The Payments page includes a timeseries chart showing payment volume over time. You can toggle between different time periods to track trends.
API Access
You can also query your payments via the API with filters and pagination.
List Payments
curl "https://api.inflowpay.xyz/api/payment?page=1&limit=20&status=PAYMENT_SUCCESS¤cy=EUR" \
-H "X-Inflow-Api-Key: inflow_priv_your_key"Filter Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number |
limit | number | Items per page |
status | string | Filter by status (can pass multiple) |
currency | string | Filter by currency |
subscription_id | string | Filter by subscription ID |
customerId | string | Filter by customer ID |
customerEmail | string | Filter by customer email |
Get Payment Details
curl https://api.inflowpay.xyz/api/payment/{paymentId} \
-H "X-Inflow-Api-Key: inflow_priv_your_key"Returns the full payment object including:
- Products, amounts, and tax details
- Timeline of status changes
- Last deposit attempt (including error codes for failed payments)
- Metadata
- Subscription ID (if applicable)
Payments In Progress
The Dashboard includes a separate view for payments that have reached CHECKOUT_SUCCESS but not yet PAYMENT_SUCCESS. Access it from the Payments page.
Updated 23 days ago