How to configure channel 'Tags'

Introduction

Custom tags can be created to identify different brands, including virtual brands or dark kitchens within the Deliverect frontend and order payload. To add and assign custom tags, follow the guide below;

Format

Below is a snippet of the order payload where a "tags" array lists all the tags applied to the ordering channel;

{
  "_id": "62********************7c",
  "channelOrderId": "TEST******4206",
  "channelOrderDisplayId": "T**4206",
  "location": "61********************b4",
  "channelLink": "61********************c3",
  "orderType": 2,
  "channel": 1,
  "pickupTime": "YYYY-MM-DDTHH:mm:ss.SSSSSSZ",
  "deliveryTime": "YYYY-MM-DDTHH:mm:ss.SSSSSSZ",
  "payment": {
    "amount": 650,
    "type": 0
  },
  "items": [
    {
      "_id": "68********************3c",
      "plu": "P-BRGR",
      "name": "Veggie Burger",
      "price": 500,
      "quantity": 1,
      "productType": 1
    }
  ],
  "tags": [
    "BRAND X"
  ]
}

See related guides

Did this page help you?