Skip to main content

Overview

The monei.transaction service allows you to retrieve and filter user transactions, including deposits and individual transaction lookups by ID or reference. This service provides:
  • Fetch all user transactions
  • Filter transactions by type
  • Retrieve deposits only
  • Get transaction details by ID
  • Get transaction details by reference

Get User Transactions

Retrieve all transactions for the authenticated user.
Endpoint

Get Transactions by Type

Filter transactions by type using the TransactionType enum.

Available Types

  • TransactionType.CREDIT
  • TransactionType.DEBIT

Get Deposits

Retrieve only deposit (credit) transactions.
This is equivalent to filtering by:

Get Single Deposit

Retrieve a single deposit by ID or Reference.

By ID

By Reference


Get Transaction by ID

Endpoint

Get Transaction by Reference

Endpoint

Working with Response Objects

All methods return objects with property access:

Response Structure

UserTransactionsResponseDto

TransactionDto


Error Handling

All transaction service calls may throw an error if the request fails.

Service Overview