BetSolutions · Example Payload

Betsolutions Withdrawfunds Example

BettingCasinosGamingGamblingSlotsSports Betting

Betsolutions Withdrawfunds Example is an example object payload from BetSolutions, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "withdrawFunds",
  "method": "POST",
  "path": "/wallet/withdraw",
  "summary": "BetSolutions Withdraw Funds",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "WithdrawFundsRequestExample",
      "example": {
        "merchantId": "merchant-001",
        "playerId": "player-500123",
        "amount": 25.0,
        "currency": "USD",
        "transactionId": "txn-def456",
        "hash": "b2c3d4e5..."
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "WithdrawFunds200Example",
      "example": {
        "success": true,
        "transactionId": "txn-def456",
        "balance": 125.0,
        "currency": "USD"
      }
    }
  ]
}