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

ColumnDescription
Payment IDUnique identifier for the payment
CustomerCustomer email address
AmountPayment amount (with currency)
StatusCurrent payment status
DateWhen the payment was created
Payment MethodOpen 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&currency=EUR" \
  -H "X-Inflow-Api-Key: inflow_priv_your_key"

Filter Parameters

ParameterTypeDescription
pagenumberPage number
limitnumberItems per page
statusstringFilter by status (can pass multiple)
currencystringFilter by currency
subscription_idstringFilter by subscription ID
customerIdstringFilter by customer ID
customerEmailstringFilter 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.