This callback occurs when the driver notifies Bringg that they are temporarily unavailable to receive orders and when they return. For example, when a driver is dealing with a vehicle malfunction they will mark themselves as unavailable in the Driver App. When the repair is finished, they will mark themselves as available again. Learn more.
Register Your URL for this Webhook
To start receiving webhooks from Bringg, you must first register a URL. Detailed guidance on setting up and managing Bringg webhooks is available in the following resources:
- Send Bringg Webhooks: Subscribe to webhooks and customize the fields in your callbacks.
- Webhook Authentication Methods: Ensure that your other systems recognize and accept webhooks from Bringg.
Response
{
"user": {
"id": 3287186,
"name": "Timothee Chalamet",
"status": "offline",
"sub": "Assigned",
"phone": +1(555)555-1234,
"external_id": "3287186"
},
"user_available": true,
"webhook_type": "driver_unavailable_status_changed",
"merchant_id": 1
}
Output Params
id Int32 |
Bringg's ID for the driver. |
name String |
The driver's name |
status Int32 |
The driver's app status. The values are:
|
sub string |
The driver's status. The values are:
|
phone string |
The driver's phone number |
external_id String |
Your ID for the driver. |
user_available Boolean |
Indicates whether the driver is available to accept orders or not. |