Search virtual account transactions

Search and filter transactions based on customer UID, account number, direction (Inbound/Outbound), and other criteria

SecurityoAuth2
Request
query Parameters
page
integer
Default: 0

Page number

size
integer
Default: 10

Page size

Request Body schema: application/json

Transaction Info

customerUID
string
accountNumber
string
direction
string
Enum: "Inbound" "Outbound"
Responses
200

OK

400

Bad request

401

You are not authorized to access the resource

403

Accessing the resource you were trying to reach is forbidden

404

The resource you were trying to reach is not found

500

Internal server error

503

Service unavailable

default

Successful

post/v2/virtual-accounts/transactions/search
Request samples
application/json
{
  • "customerUID": "string",
  • "accountNumber": "string",
  • "direction": "Inbound"
}
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}