Skip to content

Managing Operators

An operator represents a casino or gaming platform that integrates with Beexar. Each operator has:

  • A unique slug (used in game URLs and API calls as casino_id)
  • An API key for authentication
  • Callback URLs for wallet integration
  • Custom currencies (optional)
  • Game configurations assigned to them

Navigate to Operators in the sidebar to see all operators in your organization. The table shows:

ColumnDescription
NameOperator display name
SlugUnique identifier (used as casino_id in the API)
Project URLOperator’s website URL
StatusActive, Pending Review, or Suspended
CreatedCreation date

  1. Click Create New Operator

  2. Fill in the form:

    FieldRequiredDescription
    Operator NameYesDisplay name (e.g. “Lucky Casino”)
    Project URLYesOperator’s website URL (http(s)://…)
  3. Click Create

The slug is generated automatically from the name (you don’t enter it). It is permanent once created.


Click on an operator name or the view icon to open the detail page. It has the following tabs:

TabDescriptionSee
AnalyticsOperator-specific analytics (coming soon)Analytics
API KeysManage the API key and secretAPI Keys
Callback URLsConfigure wallet callback endpointsAPI Keys
BrandingOperator logo and branding assets (coming soon)
CurrenciesManage custom currencies (paid add-on)Currencies
Paid FeaturesView activated paid features (read-only)Paid Features

The header also shows the operator’s status, copyable slug, Project URL, and (if set) commission rate. The Edit button changes the name and Project URL (the slug stays fixed).


StatusMeaningCan Launch Games?
Pending ReviewNewly created, awaiting activationNo
ActiveFully operationalYes
SuspendedTemporarily disabled by platform adminNo

The operator slug is used as casino_id in all API calls:

Terminal window
# Launch a game for this operator
curl -X POST https://gateway.beexar.com/api/v1/softswiss/launcher/real \
-H "Content-Type: application/json" \
-H "X-REQUEST-SIGN: ..." \
-d '{"casino_id": "lucky-casino", "game": "dice", "account": {"id": "player_1", "currency": "USD"}}'

It also appears in game URLs:

https://games.beexar.com/dice/lucky-casino/dice-game?token=...