Skip to main content

Get All Transactions

Fetch a paginated list of all transactions for your store.

When to Use

Use this endpoint when:

  • Displaying transaction history in your dashboard
  • Building a reporting or analytics view
  • Auditing recent payment activity

How to Use

Endpoint
GET/v3/payment/transactions

Step 1: Authenticate

Obtain a valid accessToken. No signature required for this endpoint.

Step 2: Send the GET Request

Include limit as a query parameter to paginate.

Step 3: Iterate items

The response items array contains transaction objects.


Request Parameters

limitINTEGER

Maximum number of transactions to return

Example: 10

Response Parameters

itemsARRAY

List of transaction response objects

transactionIdSTRING

Revenue Monster's unique transaction ID

referenceIdSTRING

Reference ID from the payment provider

orderOBJECT

Order details

idSTRING

Order ID

titleSTRING

Order title

currencyTypeSTRING

Currency type

amountINTEGER

Order amount in cents

detailSTRING

Order detail

additionalDataSTRING

Additional data

storeOBJECT

Store details

currencyTypeSTRING

Currency type (MYR)

balanceAmountINTEGER

Remaining balance amount for initiating refund

finalAmountINTEGER

Amount after all deductions

platformSTRING

Transaction platform

typeSTRING

Transaction type

methodSTRING

Payment method

regionSTRING

Payment region

statusSTRING

Transaction status (SUCCESS, FAILED, IN_PROCESS, etc.)

transactionAtSTRING

Transaction date time (only when SUCCESS)

createdAtSTRING

Created date time

updatedAtSTRING

Last updated date time

codeSTRING

"SUCCESS" if the request succeeded, otherwise an error code.

errorOBJECT

Error details

codeSTRING

Error code if the request failed.

messageSTRING

Error message if the request failed.

debugSTRING

Debug message (sandbox only).

See Transaction Object for the full field breakdown of each item in items.