Callback
Last updated
Was this helpful?
Last updated
Was this helpful?
This guide provides documentation for integrating your game server with the TeamGames Toplist. This integration is only if you're using your own vote system, if you're using our API then you should already be ready to go. Benefits include access to exclusive features and updates as well as detailed Vote Analytics.
Registration Process
Voting Link Configuration
Receiving Vote Callbacks
PHP Callback Example
Technical Support
Create an Account: Initiate the process by creating a TeamGames account. This can be done through the following link: .
Server Setup: Post-registration, you will be directed to the server setup page.
Callback URL Configuration: Enter the callback URL for your server. This URL is where TeamGames will send notifications for each vote
Players should be directed to vote via the following URL:
https://everythingrs.com/server/{sid}/?callback={incentive}
{sid}
: Represents the subdomain assigned to your game server at registration.
{incentive}
: A string that is part of your voting script, which is used to process the incentive through your callback URL.
When a vote is recorded, TeamGames will transmit the following data to your server:
Username: The voter's username.
IP Address: The IP address from which the vote was made.
Your system must be configured to receive and process this information appropriately.
Below is an example in PHP demonstrating how to handle incoming vote data: