Get executed orders report

Retrieves a report of all orders associated with the specified account within the date range. **Features:** - Lists all orders (PAYINs, PAYOUTs, transfers, etc.) for the account - Includes order type, status, amounts, currencies - Counterparty information when available - Summary statistics by type and status **Filters:** - Filter by order type (PAYIN, PAYOUT, BALANCE_TRANSFER, etc.) - Filter by order status (COMPLETED, PENDING, FAILED, etc.) **Note:** This report shows orders/deals, not ledger movements. For balance reconciliation, use the ledger-statement endpoint. **Example:** `GET /v1/organizations/org3_xxx/merchants/mrc_xxx/accounts/acc_xxx/reports/orders?from=2025-01-01&to=2025-01-31&type=PAYIN&status=COMPLETED`

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

organizationIdstringRequired
Organization ID
merchantIdstringRequired
Merchant ID
accountIdstringRequired
Virtual account ID

Headers

x-admin-api-keystringRequired

Query parameters

fromstringRequired

Start date (YYYY-MM-DD)

tostringRequired

End date (YYYY-MM-DD)

typeenumOptional
Filter by order type
statusenumOptional
Filter by order status
cursorstringOptional

Cursor for pagination (from previous response)

limitdoubleOptional1-100Defaults to 50
Number of items per page

Response

Orders report generated successfully
accountIdstring
Virtual account ID
currencystring
Currency of the account
periodStartdatetime
Start of the reporting period
periodEnddatetime
End of the reporting period
orderslist of objects
List of orders in chronological order
summaryobject
Summary statistics for the report
paginationobject
Pagination information
generatedAtdatetime
Timestamp when this report was generated

Errors