> ## Documentation Index
> Fetch the complete documentation index at: https://docs.game-services.work/llms.txt
> Use this file to discover all available pages before exploring further.

# RGS Internal API Overview

> This document describes all endpoints that require an accessToken. The accessToken can be associated with either an operator or a brand. Available Bet Templates UUID's are located at the bottom of the page

## Authentication Types

There are two types of authentication tokens:

* **Operator Token**: Provides full access to brand management and history
* **Brand Token**: Provides access only to game history for the specific brand

Each request must include an `Authorization` header with the appropriate token.

## API Structure

```mermaid theme={null}
stateDiagram-v2
    [*] --> Authorize
    Authorize --> Brand
    Authorize --> Operator
    Brand --> History
    History --> [*]
    Operator --> History
    Operator --> Brand_Management
    Operator --> Get_Brands
    Brand_Management --> Get_Jackpot_Groups
    Brand_Management --> Create_Brand
    Brand_Management --> Edit_Brand
    Get_Jackpot_Groups --> [*]
    Create_Brand --> [*]
    Edit_Brand --> [*]
```
