LogoLogo
  • Overview
    • How to obtain an API key?
  • Webhooks
    • About Webhooks
    • Quickstart Guide
      • Set up your server
      • Creating a webhook
      • Configure your server
      • Review your webhooks
      • Secure webhooks
    • Webhook events
      • About events
      • Event List
    • Troubleshooting
  • REST API
    • Overview
      • Current Version
      • Authentication
      • Pagination
    • Quickstart Guide
      • Find the API key
      • Playground
    • API References
      • Rides
      • Search
      • Customers
      • Drivers
      • Webhooks
      • Auth
    • Errors
      • Error codes
    • Troubleshooting
Powered by GitBook
On this page
  • What are webhooks?
  • What is a webhook endpoint?

Was this helpful?

  1. Webhooks

About Webhooks

Learn how webhooks work in EverTransit to help you build integrations.

What are webhooks?

EverTransit uses webhooks to notify your application when an event happens in your fleet. Webhooks are useful for events like when a ride is created, a ride status is updated, an invoice is created, or when a driver is assigned to a ride. When one of those events is triggered, we'll send an HTTP POST with a JSON payload to the webhook's configured URL. You can then use these notifications to execute actions in your backend systems.

Use cases

Webhooks can be used to update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to your production server. You're only limited by your imagination.

What is a webhook endpoint?

A webhook endpoint is the same as any other page on your website. It’s an HTTPS endpoint on your server with a URL. You can use one endpoint to handle several different event types at once or set up individual endpoints for specific events.

PreviousHow to obtain an API key?NextQuickstart Guide

Last updated 3 years ago

Was this helpful?