BetSolutions · Schema

BalanceRequest

Request body for retrieving a player's wallet balance.

BettingCasinosGamingGamblingSlotsSports Betting

Properties

Name Type Description
merchantId string The merchant's unique identifier.
playerId string The player's unique identifier.
hash string SHA-256 hash for request authentication.
View JSON Schema on GitHub

JSON Schema

wallet-api-balance-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/betsolutions/refs/heads/main/json-schema/wallet-api-balance-request-schema.json",
  "title": "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"
  ]
}