Webhook Configuration
QuickMechs will POST a signed payload to this URL whenever a subscribed event fires on your account.
Verify the X-Webhook-Signature header on your server using HMAC-SHA256 with this secret to confirm authenticity.
Subscribed Events
0 selected
Select which events trigger a webhook delivery to the URL above.
Appointment
Select all
Payment
Select all
Mobile Ride
Select all
Tow Ride
Select all
Sample Payload
POST
Structure of the signed payload QuickMechs sends to your webhook URL.
{
"id": "evt_uuid",
"type": "appointment.created",
"created_at": "2026-06-24T12:00:00Z",
"environment": "production",
"data": {
"appointment_ref": "APT-001",
"partner_reference": "your-ref-123",
"status": "pending",
"payment_status": false
}
}