Generates individual images for each view (Front, Back, etc.) of a design.
POST /api/design/{designId}/view| 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 | number | The X coordinates. |
| yCoordinate | number | The Y coordinates. |
| angleRads | number | Logo rotation in radians. |
Returns a JSON object containing a list of views, each with its base64 encoded image data.
{
"designId": 54321,
"views": [
{
"view": "FRONT",
"base64": "iVBORw0KGgoAAAANSU..."
},
{
"view": "BACK",
"base64": "iVBORw0KGgoAAAANSU..."
}
]
}