GET
/api/v2/mor/public/transactionsList the API key's merchant transactions, with pagination and optional user, status, and type filters.
Page defaults to 1 and is clamped to at least 1. Page size defaults to 25 and is clamped to 1–100. Statistics, transaction types, and user options describe the entire merchant, independently of filters.
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| page (query) | unknown | No | |
| pageSize (query) | unknown | No | |
| userId (query) | unknown | No | |
| status (query) | string | No | |
| type (query) | string | No |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| Data | array of MorTransactionSummary | No | |
| Pagination | MorTransactionPagination | No | |
| Stats | MorTransactionStats | No | |
| TransactionTypes | array of string | No | |
| Users | array of MorTransactionUser | No |
Example request
curl -X GET "https://{base_url}/api/v2/mor/public/transactions" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.