A Logo object represents a graphical asset that can be applied to products. It contains information about the image, dimensions, colors, and pricing.
| Attribute | Type | Description |
|---|---|---|
| logoId | integer | Unique internal identifier for the Logo. |
| logoItemNo | integer | The external item number associated with the logo. |
| title | string | The name or title of the logo. |
| widthInMM | integer | The width of the logo in millimeters. |
| HeightInMM | integer | The height of the logo in millimeters. |
| logoType | string | The type of logo (e.g., "TRANSFER"). |
| transferMethodKey | string | The key identifying the transfer method used (e.g., "VAND SPORT"). |
| colors | array | A list of Pantone colors used in the logo. |
| status | string | The current status of the logo (e.g., "Draft", "Done"). |
| storageCount | integer | The number of physical copies in Jet Sport' storage. |
| LowResBase64 | string | A base64 encoded string of the low-resolution preview image. |
| prices | array | A list of price tiers for the logo. See **Pricing & Fees** below. |
| additionalFees | array | A list of additional fees (e.g., startup fees) associated with the logo. See **Pricing & Fees** below. |
The prices and additionalFees arrays contain price objects with a minQuantity field. The meaning of this field depends on the context:
prices): minQuantity represents the minimum number of pieces the vendor must order for that unit price to be applied (Tiered Pricing).startup within additionalFees, minQuantity also represents the minimum order quantity required for the fee to apply.additionalFees, minQuantity represents the multiplier (the amount of times the price of that fee will be added to the total price).{
"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": [
{
"minQuantity": 1,
"unitPrice": 25.0,
"currency": "DKK"
},
{
"minQuantity": 10,
"unitPrice": 20.0,
"currency": "DKK"
}
],
"additionalFees": [
{
"type": "startup",
"sku": "X_100",
"name": "Startup Fee",
"prices": [
{
"minQuantity": 1,
"unitPrice": 45.0,
"currency": "DKK"
},
{
"minQuantity": 10,
"unitPrice": 90.0,
"currency": "DKK"
}
]
},
{
"type": "fee",
"sku": "012",
"name": "Film charge per color",
"prices": [
{
"minQuantity": 3,
"unitPrice": 100.0,
"currency": "DKK"
}
]
}
]
}