Chizverse
    • ChizVerse Developer Docs
      • Getting Started
      • API Reference
        • Overview
        • Chizmis Authentication
          • Exchange for a ChizVerse Bearer
          • Hosted Client Login
          • Hosted Client Registration
          • Logout
          • Get Current Account
          • Validate Client Application
          • Login with Existing Session
          • Verify Session Key
        • Activity Tracking
          • Create Launch
          • Create Tracked Session
          • Get Session Checkpoint
          • Get Saved Player Progress
          • Ingest Event Batch
          • Get Game Leaderboard
        • ChizPay Wallet & Transactions
          • Get Wallet by Account ID
          • Transfer Wallet Balance
          • Get Wallet Transaction History
          • Debit Wallet
          • Credit Wallet
          • Get Game Ledger
      • SDK
      • Schemas
        • ExchangeForAChizVerseBearerResponse
        • ExchangeForAChizVerseBearerRequest
        • LogoutResponse
        • LogoutRequest
        • GetCurrentAccountResponse
        • ValidateClientApplicationResponse
        • LoginWithExistingSessionResponse
        • LoginWithExistingSessionRequest
        • VerifySessionKeyResponse
        • CreateLaunchResponse
        • CreateLaunchRequest
        • CreateTrackedSessionResponse
        • CreateTrackedSessionRequest
        • GetSessionCheckpointResponse
        • GetSavedPlayerProgressResponse
        • IngestEventBatchResponse
        • IngestEventBatchRequest
        • GetGameLeaderboardResponse
        • GetWalletByAccountIDResponse
        • TransferWalletBalanceResponse
        • TransferWalletBalanceRequest
        • GetWalletTransactionHistoryResponse
        • DebitWalletResponse
        • DebitWalletRequest
        • CreditWalletResponse
        • CreditWalletRequest
        • GetGameLedgerResponse

    GetWalletTransactionHistoryResponse

    Successful response from GET /chizpay/v1.0/wallet-transactions/history/{accountId}.

    {
        "success": true,
        "response": {
            "rows": [
                {
                    "id": 50102,
                    "accountId": 2002,
                    "senderAccountId": 1001,
                    "receiverAccountId": 2002,
                    "walletId": 8450,
                    "type": "RECEIVE",
                    "bound": "IN",
                    "amount": 50,
                    "status": "COMPLETED",
                    "referenceNumber": "transfer_20260506_0001",
                    "createdAt": "2026-05-06T10:15:00.000Z"
                }
            ],
            "count": 1,
            "filters": {
                "bound": "IN",
                "type": "RECEIVE",
                "status": "COMPLETED"
            }
        }
    }
    Built with