Getting Started
Welcome to the Platform documentation. This guide will help you get started with integrating our services into your application.
Authentication
All player-related resources in the Platform are protected and require authentication. Authentication is handled through Bearer token authorization.
How to Authenticate
- First, you need to sign in using the authentication endpoint
- Upon successful sign-in, you'll receive an access token
- Include this token in all subsequent API requests in the Authorization header:
Authorization: Bearer <your_access_token>
Token Usage
- The access token must be included in the
Authorizationheader of every request to protected resources - Tokens have a limited lifetime and will need to be refreshed
- Keep your tokens secure and never expose them in client-side code
Available Environments
We provide different environments for development and testing:
- Staging: For testing and development
- Web application: https://tpl.4478.io
- API Base URL: https://pam.tpl.4478.io
- Available brand: tpl
Rate Limits
Please be aware of the following rate limits:
- 100 requests per minute
Next Steps
- Check out our API Reference for detailed endpoint documentation
- Review the Staging Environment for testing your integration
- Stay updated with our Changelog for the latest changes and improvements