Multigate
  1. V2
Multigate
  • 🚀 Getting Started
  • 🔓 Authentication
    • Get Token
    • Refresh Token
    • Logout User
    • Reset Password
    • Get Current User Info
  • 👋 Onboarding
    • Create Subclient
    • Get All Subclients
    • Get Subclient
    • Update Subclient
    • Create Subclient Shareholder
    • Get Subclient Shareholders
    • Update Subclient Shareholder
    • Upload Subclient Documents
    • Get Subclient Documents
    • Delete Subclient
    • Submit Subclient
  • 💰 Accounts
    • 📄 Statements
      • V2
        • Get statement by account entity Id
          GET
        • Download statement by account entity Id
          GET
      • Get Statement
        GET
      • Download statement
        GET
    • Create Virtual Account
      POST
    • Get Account
      GET
    • Get Accounts By
      GET
    • Get All Accounts
      GET
    • Simulate Inflow (UAT only)
      POST
  • 🔃 Conversions
    • Get Quote
    • Lock Rate
    • Get Trade
    • Get All Trades
  • 💸 Payments
    • 🏦 Banks
      • Get Bank Details
    • 👤 Beneficiaries
      • Create Beneficiary
      • Get All Beneficiaries
      • Get Beneficiary
      • Update Beneficiary
      • Validate Beneficiary Account (NGN only)
    • Create Single Transfer
    • Get Purpose Codes
    • Get Transfer Fields & Fees
    • Find Transfers
  • 📩 Webhooks / Push Notifications
    • Add a New Client Configuration
    • Update Client Configuration Current Mode
    • Get Client Configuration
  • 📲 Remittance
    • Initiate Remittance
    • Get Remittance
  1. V2

Get statement by account entity Id

GET
/client-service/api/v2/statement/clientStatement/accounts/{accountId}

Request

Path Params

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-gateway-uat.mmacs.io/platform/client-service/api/v2/statement/clientStatement/accounts/?startDate&endDate&limit&pageNumber'

Responses

🟢200OK
application/json
application/json
Body

Example
{
    "message": "string",
    "openingBalance": 0,
    "closingBalance": 0,
    "startDate": "string",
    "endDate": "string",
    "statement": {
        "data": [
            {
                "transactionId": "string",
                "uniqueRequestId": "string",
                "amount": 0,
                "currency": "string",
                "direction": "credit",
                "transactionType": "transfer",
                "transactionDate": "string",
                "narration": "string",
                "accountBalance": 0
            }
        ],
        "page": 0,
        "pageSize": 0,
        "totalItems": 0,
        "totalPages": 0
    }
}
🟢200OK
🟢200OK
Modified at 2025-10-24 12:56:20
Previous
V2
Next
Download statement by account entity Id
Built with