The Bet Brothers
HomeNewsLinkedIn
  • The Bet Brothers APIS
    • 🧩Core Concepts
    • 🔁API Flow
  • OPERATOR API
    • 🔗Operator Integration Service
    • 🔑Protocol API
      • Create api-token
      • Revoke api-token
  • 🚀Game Launcher API
    • Get Game Providers
    • Get Games
    • Launch Game in Demo Mode
    • Launch game in Real Mode
  • 💰Wallet API
    • Balance
    • Bet
    • Win
    • Refund
    • Rollback Win
  • ⚡Free Spin API
    • Add Free Spin
    • Cancel Free Spin
  • 🎮Game Insights
    • Get Game Bet Levels
    • Get Round Info
  • 📖Addendum
    • TBB Error Codes
    • Wallet Error Response
  • SUPPLIER API
    • 🔗Supplier Integration Service
    • 🔑Supplier Protocol API
    • 🚀Game Launcher API
      • Launch Game in Demo Mode
      • Launch Game in Real Mode
  • 🎲Game Events
    • Balance
    • Bet
    • Win
    • Refund
  • 📖Addendum
    • TBB Error Codes
Powered by GitBook
On this page
  1. Free Spin API

Cancel Free Spin

PreviousAdd Free SpinNextGame Insights

Last updated 10 days ago

⚡
post

This endpoint cancels previously granted free spin rounds on a player’s account. Please be aware that not every game is compatible with free spins.

Header parameters
AuthorizationstringRequired

Bearer token for authorization (e.g. Bearer YOUR_API_TOKEN)

Body
player_idstringRequired

Unique identifier of player.

referencestringRequired

Reference string.

freespin_idintegerRequired

Identifier of the created Free Round.

Responses
200
Free spin round successfully canceled.
application/json
503
Service unavailable or campaign not found.
application/json
post
POST /api/freespin/cancel HTTP/1.1
Host: 
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 61

{
  "reference": "wazdan:426",
  "player_id": 12,
  "freespin_id": 54636
}
{
  "status": "ok"
}