Get Thumbnail Image

Generates a single composite thumbnail image for a design.

POST /api/design/{designId}/thumbnail

Parameters #

ParameterTypeDescription
designIdintegerThe internal ID of the design.

Body (Optional) #

ParameterTypeDescription
designIdintegerThe internal ID of the design.
designLogosarray(Optional) A list of temporary logo placements to use for this image generation.

Design Logo Object

ParameterTypeDescription
logoIdintegerThe ID of the logo.
viewstringThe view name (e.g., "FRONT").
xCoordinateintegerThe X coordinates.
yCoordinateintegerThe Y coordinates.
angleRadsintegerLogo rotation in radians.

Returns #

Returns a JSON object containing the base64 encoded image data.

{
  "designId": 54321,
  "base64": "iVBORw0KGgoAAAANSU..."
}