Managing Operators
What Is an Operator?
Section titled “What Is an Operator?”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
Operators List
Section titled “Operators List”Navigate to Operators in the sidebar to see all operators in your organization. The table shows:
| Column | Description |
|---|---|
| Name | Operator display name |
| Slug | Unique identifier (used as casino_id in the API) |
| Project URL | Operator’s website URL |
| Status | Active, Pending Review, or Suspended |
| Created | Creation date |
Creating an Operator
Section titled “Creating an Operator”-
Click Create New Operator
-
Fill in the form:
Field Required Description Operator Name Yes Display name (e.g. “Lucky Casino”) Project URL Yes Operator’s website URL ( http(s)://…) -
Click Create
The slug is generated automatically from the name (you don’t enter it). It is permanent once created.
Operator Detail Page
Section titled “Operator Detail Page”Click on an operator name or the view icon to open the detail page. It has the following tabs:
| Tab | Description | See |
|---|---|---|
| Analytics | Operator-specific analytics (coming soon) | Analytics |
| API Keys | Manage the API key and secret | API Keys |
| Callback URLs | Configure wallet callback endpoints | API Keys |
| Branding | Operator logo and branding assets (coming soon) | — |
| Currencies | Manage custom currencies (paid add-on) | Currencies |
| Paid Features | View 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).
Operator Statuses
Section titled “Operator Statuses”| Status | Meaning | Can Launch Games? |
|---|---|---|
| Pending Review | Newly created, awaiting activation | No |
| Active | Fully operational | Yes |
| Suspended | Temporarily disabled by platform admin | No |
Operator Slug in the API
Section titled “Operator Slug in the API”The operator slug is used as casino_id in all API calls:
# Launch a game for this operatorcurl -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=...