Skip to content

List Transactions

GET
/api/Transactions
curl --request GET \
--url 'https://example.com/api/Transactions?Status=Processing' \
--header 'Authorization: Bearer <token>'

Returns a paginated list of transactions for a merchant. Supports filtering by status, member, subscription, and date range, plus free-text search across reference and description.

GET /api/transactions?merchantId=...&status=Approved&from=2026-01-01
MerchantId
string format: uuid
Status
string
Allowed values: Processing Approved Declined Refunded Voided
MemberId
string format: uuid
SubscriptionId
string format: uuid
From
string format: date-time
To
string format: date-time
Search
string
Page
integer format: int32
PageSize
integer format: int32

Paginated list of transactions.

Media type application/json
object
items
Array<object>
nullable
object
id
string format: uuid
reference
string
nullable
memberId
string format: uuid
nullable
memberName
string
nullable
description
string
nullable
cardInfo
string
nullable
amount
number format: double
currency
string
nullable
status
string
Allowed values: Processing Approved Declined Refunded Voided
declineCode
string
nullable
createdAt
string format: date-time
processedAt
string format: date-time
nullable
page
integer format: int32
pageSize
integer format: int32
totalCount
integer format: int32
totalPages
integer format: int32
hasNextPage
boolean
hasPreviousPage
boolean
Example
{
"items": [
{
"status": "Processing"
}
]
}