BetSolutions · JSON Structure

Wallet Api Balance Request Structure

Request body for retrieving a player's wallet balance.

Type: object Properties: 3 Required: 3
BettingCasinosGamingGamblingSlotsSports Betting

BalanceRequest is a JSON Structure definition published by BetSolutions, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

merchantId playerId hash

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/betsolutions/refs/heads/main/json-structure/wallet-api-balance-request-structure.json",
  "name": "BalanceRequest",
  "description": "Request body for retrieving a player's wallet balance.",
  "type": "object",
  "properties": {
    "merchantId": {
      "type": "string",
      "description": "The merchant's unique identifier.",
      "example": "merchant-001"
    },
    "playerId": {
      "type": "string",
      "description": "The player's unique identifier.",
      "example": "player-500123"
    },
    "hash": {
      "type": "string",
      "description": "SHA-256 hash for request authentication.",
      "example": "c3d4e5f6..."
    }
  },
  "required": [
    "merchantId",
    "playerId",
    "hash"
  ]
}