BetSolutions · JSON Structure

Wallet Api Error Response Structure

Error response returned when a request fails.

Type: object Properties: 3
BettingCasinosGamingGamblingSlotsSports Betting

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

Properties

success errorCode errorMessage

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-error-response-structure.json",
  "name": "ErrorResponse",
  "description": "Error response returned when a request fails.",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Always false for error responses.",
      "example": false
    },
    "errorCode": {
      "type": "int32",
      "description": "Numeric error code.",
      "example": 400
    },
    "errorMessage": {
      "type": "string",
      "description": "Human-readable error description.",
      "example": "Invalid hash signature."
    }
  }
}