Skip to main content

Customer specified delivery date and time windows for Courier and Distribution services

For Courier and Distribution services, Bring provides a possibility to offer alternative delivery dates and time windows to your end customers. Alternative delivery date and time window that have been selected by the end customer, can be booked via Booking API as described in the below request examples.

We advise clients of the Booking API to use Shipping Guide API for getting the alternative delivery dates and time windows for a particular Courier or Distribution shipment before sending a booking request with the preferred alternative.

Request example

XML

<product>
  <customerNumber>"**********"</customerNumber>
  <explicitAdditionalServices>false</explicitAdditionalServices>
  <id>3625</id>
</product>
<shippingDateTime>2025-07-07T18:30:00</shippingDateTime>
<customerSpecifiedDelivery>
 <startDateTime>2025-07-08T08:00:00</startDateTime>
  <endDateTime>2025-07-08T09:00:00</endDateTime>
</customerSpecifiedDelivery>

JSON

"product": {
  "customerNumber": "**********",
  "explicitAdditionalServices": false,
  "id": "3625"
},
"shippingDateTime": "2025-07-07T18:30:00",
"customerSpecifiedDelivery": {
  "startDateTime": "2025-07-08T08:00:00",
  "endDateTime": "2025-07-08T09:00:00"
}