BetSolutions · Schema

GameListRequest

Request body for retrieving the available game list.

BettingCasinosGamingGamblingSlotsSports Betting

Properties

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

JSON Schema

betsolutions-gamelistrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GameListRequest",
  "title": "GameListRequest",
  "type": "object",
  "description": "Request body for retrieving the available game list.",
  "required": [
    "merchantId",
    "hash"
  ],
  "properties": {
    "merchantId": {
      "type": "string",
      "description": "The merchant's unique identifier.",
      "example": "merchant-001"
    },
    "hash": {
      "type": "string",
      "description": "SHA-256 hash for request authentication.",
      "example": "d4e5f6g7..."
    }
  }
}