Images - POS Products

A POS can provide the images as part of product data. This would be in the form of an imageUrl. It is possible to set an image for;

ItemKeyDescription
Products"imageUrl"Each product ("productType": 1) can have it's own image
Modifier"imageUrl"Modifiers("productType": 2)can have an associated image (not widely supported on ordering platforms)
Modifier Groups"imageUrl"Although modifier groups ("productType": 3)can have an associated image it is only applicable In very specific use cases

Image Specififcation

Below is the advised specifications based on the requirements across ordering platforms. Images outside the recommended specification will still be uploaded to Deliverect, it will however risk empty image display or menu updates being rejected;

DetailRecommendation
DimensionMinimum: 1920 x 1080 pixels
Maximum: 4920 x 3264
Aspect Ratio16:9
FormatJPEG

Image URL

Any images synced will then be hosted by Deliverect. For POS who don't support this, images may be uploaded manually by a user (more info on manual upload here)

Sending imageUrl as part of Insert/update products endpoint is shown in the example below;

ⓘ Image Overrides When users manually apply images to items within Deliverect, these will remain affixed and can only be reverted

Sample

Below is a condensed product payload showing image URLs, where supported, should be set;

{
  "accountId": "6**f578fa205bc3eca854***",
  "locationId": "6**91e9273d6950b4b0a8***",
  "products": [
    {
      "productType": 1,
      "plu": "SAL-01",
      "price": 1500,
      "name": "House Salad",
      "posCategoryIds": [
        "SAL"
      ],
      "imageUrl": "https://deliverect-a28cf2a17775.intercom-attachments-1.com/i/o/756575930/c7a43997cda167d413e6820c/mceclip0.png"
    },
    {
      "productType": 3,
      "plu": "MOD-01",
      "name": "Choose Dressing",
      "imageUrl": "https://deliverect-a28cf2a17775.intercom-attachments-1.com/i/o/756575930/c7a43997cda167d413e6820c/mceclip0.png",
      "subProducts": [
        "DRESS-01"
      ]
    },   
    {
      "productType": 2,
      "plu": "FR1",
      "price": 0,
      "name": "French Dressing",
      "imageUrl": "https://deliverect-a28cf2a17775.intercom-attachments-1.com/i/o/756575930/c7a43997cda167d413e6820c/mceclip0.png"
    }
  ],
  "categories": [
    {
      "name": "Salads",
      "posCategoryId": "SAL"
    }
  ]
}