added

New Offer Types for Deliveroo Orders API and Picking API Webhooks

Deliveroo is excited to announce the introduction of new promotional offer types for our partners. These offers can now be sent via the POS Integration and Picking API webhooks, allowing seamless application of promotions to enhance customer engagement and boost sales.

New Offer Types

The newly introduced offers are designed to support flexible and diverse discount configurations. Here are the details:

  1. percentage_off_on_multiple_item_multibuy: Provides a percentage discount when a specified quantity of multiple items is purchased. Example promotion - Buy 2 pack from any of strawberry, blueberry or raspberry for 15% off
  2. percentage_off_on_single_item_multibuy: Offers a percentage discount when a specified quantity of a single item is purchased. Example promotion - Buy 2 pack of strawberry for 15% off
  3. amount_off_on_single_item_multibuy: Buy a specified quantity of a single item for fixed amount. Example promotion - Buy 2 packs of strawberry for £4
  4. amount_off_on_multiple_item_multibuy: Buy a specified quantity of multiple items for fixed amount. Example promotion - Buy 2 pack from any of strawberry, blueberry or raspberry for £4

Here are sample JSON payloads for each offer type which would be added to Orders API & Picking API. For any support or Integration related queries, Please raise a ticket to the Integration Team.

  1. Amount Off on Multiple Item Multibuy
 {
   "id": "812c61eb-fc6b-4479-9971-b795f3582385",
   "type": "amount_off_on_multiple_item_multibuy",
   "value": 0,
   "bundle_amount": {
     "fractional": 400,
     "currency_code": "GBP"
   },
   "quantity": 2,
   "pos_item_ids": [
     {
       "id": "111820159"
     },
     {
       "id": "8712000050733"
     }
   ]
 }
  1. Amount Off on Single Item Multibuy
 {
  "id": "779739c7-08e2-46be-9b79-cd267c3a0295",
  "type": "amount_off_on_single_item_multibuy",
  "value": 0,
  "bundle_amount": {
    "fractional": 300,
    "currency_code": "GBP"
  },
  "quantity": 3,
  "pos_item_ids": [
    {
      "id": "789-plu"
    }
  ]
}
  1. Percentage Off on Single Item Multibuy
 {
  "id": "4d94d30b-70c8-4adb-a460-91810c1c4218",
  "type": "percentage_off_on_single_item_multibuy",
  "value": 10,
  "quantity": 3,
  "pos_item_ids": [
    {
      "id": "5000169525524"
    }
  ]
}
  1. Percentage Off on Multiple Item Multibuy
 {
  "id": "0447aada-c49d-4d6b-a1bb-28d55be3941d",
  "type": "percentage_off_on_multiple_item_multibuy",
  "value": 10,
  "quantity": 2,
  "pos_item_ids": [
    {
      "id": "5000108589945"
    },
    {
      "id": "5000108280941"
    }
  ]
}