How to Generate an Access Token
1. Log in to the Application
- Open your web browser and navigate to the application login page.
- Enter your credentials to log in to your account.
2. Access API Settings
- After logging in, locate and click on the More menu (typically represented by three dots or lines) in the navigation bar.
- From the dropdown menu, select API Access to open the API settings page.

3. Copy Your Access Token
- On the API Access page, you’ll find your access token displayed in a designated field.
- Click the Copy button next to the token to copy it to your clipboard.
4. Regenerating Your Token (If Needed)
- If you need to generate a new token, click the Regenerate Token button.
- A confirmation dialog will appear - confirm to proceed.
- Important: The old token will be invalidated immediately after regeneration.
- Copy the new token as it will only be shown once.
5. Using Your Token
- Your access token should be included in the
Authorization
header of your API requests as a Bearer token. - Example:
Authorization: Bearer your_access_token_here
Security Note: Keep your access token confidential and never share it publicly or commit it to version control.