IMPORTANT: This function should only be used on logos with status "Draft".
Resizes an existing logo.
POST /api/logo/{logoId}/resize| Parameter | Type | Description |
|---|---|---|
| logoId | integer | The internal ID of the logo to modify. |
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 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...",
"highResBase64": "iVBORw0KGgoAAAANSU...",
"prices": [...],
"additionalFees": [...]
}