Select User
Loading...
Search and select the user whose webhook configuration you want to manage.
API Key
—
This user has no API key. Webhook operations will fail until they generate one.
Webhook Configuration
QuickMechs will POST a signed payload to this URL whenever a subscribed event fires on this user's 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
}
}