Get View Images

Generates individual images for each view (Front, Back, etc.) of a design.

POST /api/design/{designId}/view

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").
xCoordinatenumberThe X coordinates.
yCoordinatenumberThe Y coordinates.
angleRadsnumberLogo rotation in radians.

Returns #

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..."
    }
  ]
}