Retrieve a Logo

Retrieves the details of an existing logo.

GET /api/logo/{logoId}

Parameters #

ParameterTypeDescription
logoIdintegerThe internal ID of the logo to retrieve.

Returns #

Returns a logo object if a valid identifier was provided.

{
  "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": "Done",
  "storageCount": 25,
  "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"
        }
      ]
    }
  ]
}