Generates a single composite thumbnail image for a design.
POST /api/design/{designId}/thumbnail| Parameter | Type | Description |
|---|---|---|
| designId | integer | The internal ID of the design. |
| Parameter | Type | Description |
|---|---|---|
| designId | integer | The internal ID of the design. |
| designLogos | array | (Optional) A list of temporary logo placements to use for this image generation. |
Design Logo Object
| Parameter | Type | Description |
|---|---|---|
| logoId | integer | The ID of the logo. |
| view | string | The view name (e.g., "FRONT"). |
| xCoordinate | integer | The X coordinates. |
| yCoordinate | integer | The Y coordinates. |
| angleRads | integer | Logo rotation in radians. |
Returns a JSON object containing the base64 encoded image data.
{
"designId": 54321,
"base64": "iVBORw0KGgoAAAANSU..."
}