Skip to main content
Allstar uses webhooks to notify your application when an event happens in your account. All integrations should establish a webhook endpoint to listen for events. Each request sent to our API can be configured with a webhookUrl string in the payload. See API Reference

Authentication

Your webhook can be authenticated with a header. Let your
Authorization: {string}
How you authenticate your webhook is up to you, here are some examples:
Authorization: token 123456

Retries

We will retry the event notification every 15 minutes until we recieve a 2xx responce from your API or until we try 8 times.

Event

An example for an event of a requested booking.
{
      event: "booking",
      status: "requested",
      user: "000-000-000",
      username: "John Smith",
      first_seen: true,
      booking_day: 14,
      booking_month: 5,
      booking_year: 2024,
      booking_time: "1300"
      booking_iso_string: "1300"
}