Delivery Types

View as Markdown

Rendr supports several delivery types, each offering a different balance of speed and price. The available types for a given order are returned dynamically by the Quote API based on store configuration, carrier availability, and order details.

All prices quoted are GST inclusive.

Available Delivery Types

Delivery TypeDescription
fastA delivery service with a 3-hour pick-up and delivery window.
flexibleA delivery service with a same-day pick-up and delivery window.
standardA delivery service with a minimum overnight and potentially multi-day pick-up and delivery window.
expressAn expedited multi-day service via a third-party carrier (e.g. Australia Post Express Post).

How Delivery Types Are Returned

The Quote API returns only the delivery types available for a given request, based on:

  • The store’s enabled delivery types
  • The store’s operating hours and cut-off times
  • The delivery address and serviceable radius
  • Carrier availability and product type compliance

When booking a delivery, the chosen delivery_type from the quote response must be passed in the Request Delivery payload.

Third-Party Carrier Services

For standard and express delivery types, the quote response includes provider and service fields identifying the carrier and service level:

1{
2 "standard": {
3 "price_cents": 800,
4 "from_datetime": "2026-01-24T11:41:00+11:00",
5 "to_datetime": "2026-01-31T11:41:00+11:00",
6 "provider": "Australia Post",
7 "service": "PARCEL POST + SIGNATURE"
8 },
9 "express": {
10 "price_cents": 700,
11 "from_datetime": "2026-01-24T11:41:00+11:00",
12 "to_datetime": "2026-01-26T11:41:00+11:00",
13 "provider": "Australia Post",
14 "service": "EXPRESS POST + SIGNATURE"
15 }
16}

When booking a standard or express delivery via a third-party carrier, include the provider_options object in the booking request to ensure the correct service is used:

1{
2 "provider_options": {
3 "provider": "Australia Post",
4 "service": "EXPRESS POST + SIGNATURE"
5 }
6}