Webhooks

Vote Webhooks

To get started, go to your management page (server or bot) and then fill in the Webhook options. We will send a POST request to your webhook URL with the following data:

Headers

NameValue

Content-Type

application/json

Authorization

<YOUR_WEBHOOK_TOKEN>

{
    "bot": "string",
    "user": "string"
}

PS: Our server will not try to send a request again even if you send a status code other than 2xx.

Last updated