Change Method

IMPORTANT: This function should only be used on logos with status "Draft", and shouldn't be used on any logos which have had changed colors.

Updates the transfer method for an existing logo.

POST /api/logo/{logoId}/updatemethod

Parameters #

ParameterTypeDescription
logoIdintegerThe internal ID of the logo to modify.

Body #

{
  "transferMethodKey": "INDUSTRI"
}

Returns #

Returns the updated logo object.

{
  "logoId": 123456,
  "logoItemNo": 987654,
  "title": "New Logo",
  "widthInMM": 100,
  "HeightInMM": 50,
  "logoType": "TRANSFER",
  "transferMethodKey": "VAND SPORT",
  "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": [...]
}