1. ChizPay Wallet & Transactions
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
          GET
        • Transfer Wallet Balance
          POST
        • Get Wallet Transaction History
          GET
        • Debit Wallet
          POST
        • Credit Wallet
          POST
        • Get Game Ledger
          GET
    • 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
  1. ChizPay Wallet & Transactions

Transfer Wallet Balance

POST
/chizpay/v1.0/wallet-transactions
Transfers balance from one user wallet to another through paired internal ledger rows.

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Successful response.
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.chizmis.com/chizpay/v1.0/wallet-transactions' \
--header 'authorization;' \
--header 'Content-Type: application/json' \
--data '{
  "senderAccountId": 1001,
  "receiverAccountId": 2002,
  "amount": 50,
  "referenceNumber": "transfer_20260506_0001",
  "nonce": "b3d9a8f2-7fb2-4f45-a22a-2c52b602ef74",
  "timestamp": 1778062500000,
  "signature": "hmac-sha256:5a7f..."
}'
Response Response Example
{
  "success": true,
  "response": {
    "senderTx": {
      "id": 50101,
      "accountId": 1001,
      "walletId": 9123,
      "type": "SEND",
      "bound": "OUT",
      "amount": 50,
      "status": "COMPLETED",
      "referenceNumber": "transfer_20260506_0001"
    },
    "receiverTx": {
      "id": 50102,
      "accountId": 2002,
      "walletId": 8450,
      "type": "RECEIVE",
      "bound": "IN",
      "amount": 50,
      "status": "COMPLETED",
      "referenceNumber": "transfer_20260506_0001"
    }
  }
}
Modified at 2026-07-30 06:57:15
Previous
Get Wallet by Account ID
Next
Get Wallet Transaction History
Built with