The Run Ended callback occurs when a route ends.
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.
The Run Ended webhook is sent to your designated URL when a route ends, and by default includes route, order, waypoint, and user details.
The end of a route can be triggered in a few ways:
- Manually in the driver app once all orders are completed. This can also be done automatically if configured accordingly with your Bringg support representative.
- Automatically, when the assigned driver arrives at your team location without unfinished orders.
- For on-demand orders, if a driver returns to the team location to collect more orders, the open orders from the existing route are extracted and moved to the new one.
- Thirty minutes after a driver's shift ends without any open orders.
Webhook
Below are the default parameters included in the Run Ended webhook.
{
"run": {
"id": 12345,
"user_id": 67890,
"estimated_distance_traveled": null,
"team_id": 1122,
"scheduled_end_time": "2024-03-15T17:00:00Z",
"external_id": 334455,
"tasks": [
{
"id": 101,
"status": 4,
"title": "Deliver Package",
"external_id": "ext123",
"way_points": [
{
"id": 201,
"position": 1,
"scheduled_at": "2024-03-15T15:30:00Z",
"eta": "2024-03-15T15:45:00Z",
"address": "123 Main St, Anytown, AT 12345"
},
{
"id": 202,
"position": 2,
"scheduled_at": "2024-03-15T16:00:00Z",
"eta": "2024-03-15T16:15:00Z",
"address": "456 Second St, Anytown, AT 67890"
}
]
}
],
"user": {
"id": 78901,
"name": "Rowan Birchwood",
"status": "assigned",
"sub": "free",
"phone": "+1234567890",
"external_id": "userext456"
}
},
"webhook_type": "run_ended",
"merchant_id": 1,
}
Output Params
The Run Ended webhook includes the Run Object.
Parameter | Description |
---|---|
end_lat double | The latitude of the route when it was ended. |
end_lng double | The longitude of the route when it was ended. |
end_method int32 | Indicates the method used to end this route. Possible values: 0 - manually using the Driver App1 - automatic check-in or check-out via geofence2 - driver's action when prompted by the Driver App4 - auto-corrected by client5 - auto-corrected by server6 - automated by activity trigger7 - updated in the Bringg platform8 - updated in the store app9 - from run end10 - updated by Bringg automation |
ended_at datetime | The date and time when this route was ended, formatted as "%Y-%m-%dT%H:%M:%S%z" and according to the UTC time zone. |
external_id Int32 | Your external system's ID for this run. Appears as planned_route_external_id when included outside of the run object. |
id Int32 | The ID Bringg assigns to a run when it is created. Use only in the update_task API request. When using update_task , either id or external_id can be indicated in the run object. |
planned_route_id Int32 | Bringg's ID for the planned route. Planned routes are created in advanced (not created using AutoDispatch). |
run_configuration_id Int32 | Refers to the GPS configuration (x seconds between location updates) per user status. Values include: Free =>10, "Started" =>10, "Assigned" =>10, "Checked-In" =>10, "Late" =>10} |
scheduled_end_time datetime | The date and time when this route is scheduled to end, formatted as "%Y-%m-%dT%H:%M:%S%z" and according to the UTC time zone. |
scheduled_start_time datetime | The date and time when this route is scheduled to begin, formatted as "%Y-%m-%dT%H:%M:%S%z" and according to the UTC time zone. |
start_lat double | The latitude of the route when it was started. |
start_lng double | The longitude of the route when it was started. |
start_method int32 | Indicates the method used to start this route. Possible values: 0 - manually using the Driver App1 - automatic check-in or check-out via geofence2 - driver's action when prompted by the Driver App4 - auto-corrected by client5 - auto-corrected by server6 - automated by activity trigger7 - updated in the Bringg platform8 - updated in the store app9 - from run end10 - updated by Bringg automation |
started_at datetime | The date and time when this route was started, formatted as "%Y-%m-%dT%H:%M:%S%z" and according to the UTC time zone. |
tasks array | An array of order (task) objects. Read more about the Order (Task) Object |
team_id Int32 | Bringg's ID for the team assigned to this route. Can be indicated in the task object or run object. If indicated in task object, team_id must be omitted or match in run object. |
user object | An object including the details of the driver assigned to this route. |
user_external_id Int32 | Your external system's ID for the driver assigned to this route. |
user_id Int32 | Bringg's ID for the driver assigned to this route. Can be indicated in the task object or run object. If indicated in task object, user_id must be omitted or matched in the run object. |
vehicle_id Int32 | Bringg's ID for the vehicle assigned to a route. |