API Access Key
Who can use this feature: Admin, Manager
Access Keys are used to authenticate requests and secure integrations with Flarie Studio. This includes API access, webhooks, and secure player identification.
The API Access Key is used to authenticate requests to the Flarie API.
- Include it as the
accessKeyparameter in your API requests - It can also be used as a Bearer token in webhook requests
Example:Authorization: Bearer <accessKey>Verifying this token on your server helps ensure that requests are coming from Flarie.
Generate an API access key
- Go to Access Keys in the menu.
- Click Generate Key.
NoteGenerating a new key will invalidate any previously generated key.
Webhook Secret Key
The Webhook Secret Key adds an extra layer of security to webhook requests.It generates a hash using:SHA-256 (payload + secretKey)This hash is sent in the request header as:X-SignatureYou can verify this on your server to ensure the request is authentic and unchanged.

Get a webhook secret key
- Go to Access Keys.
- Generate and copy the key.
The webhook secret key is optional and can be enabled in webhook settings under Custom Headers
UUID Secret Key
The UUID Secret Key is used to secure player identification when using URL parameters.When enabled with Authenticated UUID:
- The
uuidparameter must be a signed JWT token - Only verified users can access the Game or Game Center

Get a UUID secret key
- Go to Access Keys.
- Generate and copy the key.
The UUID secret key is optional.
NoteGenerating a new key will invalidate any existing key.