Rename Logo

Renames an existing logo.

PUT /api/logo/{logoId}/rename

Parameters #

ParameterTypeDescription
logoIdintegerThe internal ID of the logo to rename.

Body #

{
  "title": "My cool logo"
}

Returns #

Returns the updated logo object with the new title.

{
  "logoId": 123456,
  "logoItemNo": 987654,
  "title": "My cool 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": [...]
}