Vote Webhook
Receive new vote data via webhooks.
Whenever a user votes for your listing, a POST
request will be sent to your endpoint, along with its authorization token.
Get Started
To provide us with an endpoint and authorization token to use, head over to our dashboard. At the bottom of the form on that page you'll find the section for your listings' webhook. Lastly, remember to check for the Authorization
header in any requests you receive to ensure it came from us.
Using a Firewall?
You can whitelist our IP 51.222.204.155
.
Structure
Field | Description |
---|---|
guild_id | The ID of the guild that was voted for. |
id | The ID of the user that voted. |
username | The name of the user that voted. |
voted_on | When the user voted. |
times_voted | How many times the user voted for this specific guild. |
Field | Description |
---|---|
client_id | The ID of the bot that was voted for. |
id | The ID of the user that voted. |
username | The name of the user that voted. |
voted_on | When the user voted. |
times_voted | How many times the user voted for this specific bot. |
Last updated