Resize Logo

IMPORTANT: This function should only be used on logos with status "Draft".

Resizes an existing logo.

POST /api/logo/{logoId}/resize

Parameters #

ParameterTypeDescription
logoIdintegerThe internal ID of the logo to modify.

Body #

The body contains both the widthInMM and the heightInMM. Both can be included but are not necessary, e.g., if only defining the width, the height will change proportionally.

{
  "widthInMM": "120",
  "heightInMM": ""
}

Returns #

Returns the updated logo object with new dimensions and potentially updated pricing.

{
  "logoId": 123456,
  "logoItemNo": 987654,
  "title": "New Logo",
  "widthInMM": 120,
  "HeightInMM": 55,
  "logoType": "TRANSFER",
  "transferMethodKey": "INDUSTRI",
  "colors": [
    {
      "ID": "HVID",
      "Name": "White",
      "Red": 255,
      "Green": 255,
      "Blue": 255
    },
    {
      "ID": "200",
      "Name": "PMS 200 C",
      "Red": 245,
      "Green": 56,
      "Blue": 59
    }
  ],
  "status": "Draft",
  "storageCount": 0,
  "LowResBase64": "iVBORw0KGgoAAAANSU...",
  "prices": [...],
  "additionalFees": [...]
}