AssignedProductView Data Type

Links a product to one of its printable views (sides), such as front or back. Contains the assignment identifier used when placing design elements on a specific side.

Available Since
1.3.0
Subtypes
AssignedProductViewExpanded
Properties
Name Type Description
id number Unique numeric identifier for the AssignedProductView.
orderIndex number Data sorting.
productView ProductView Assigned product view.
defaultView boolean Whether this view is the default product view.
visibleInCreator boolean Whether this view is shown in the design creator interface.
prioritizeOnOverview boolean Whether this view is shown first on product overview and listing pages.
type ProductViewType The type of assigned view. Possible Values are TECHNICAL, HUMAN.
Used in
AssignedProductView (JSON)
{
  "assignedProductView" : {
    "id" : 12345,
    "orderIndex" : 1,
    "productView" : {
      "id" : 12345,
      "name" : "Front view",
      "position" : "Front"
    },
    "defaultView" : true,
    "visibleInCreator" : true,
    "prioritizeOnOverview" : true,
    "type" : "HUMAN"
  }
}
AssignedProductView Data Type

Links a product to one of its printable views (sides), such as front or back. Contains the assignment identifier used when placing design elements on a specific side.

Available Since
1.3.0
Subtypes
AssignedProductViewExpanded
Properties
Name Type Description
defaultView boolean Whether this view is the default product view.
id int Unique numeric identifier for the AssignedProductView.
orderIndex int Data sorting.
prioritizeOnOverview boolean Whether this view is shown first on product overview and listing pages.
productView ProductView Assigned product view.
type ProductViewType The type of assigned view. Possible Values are TECHNICAL, HUMAN.
visibleInCreator boolean Whether this view is shown in the design creator interface.
Used in
AssignedProductView (XML)
<assignedProductView>
  <id>...</id>
  <orderIndex>1</orderIndex>
  <productView>
    <id>...</id>
    <name>Front view</name>
    <position>Front</position>
  </productView>
  <defaultView>...</defaultView>
  <visibleInCreator>...</visibleInCreator>
  <prioritizeOnOverview>...</prioritizeOnOverview>
  <type>...</type>
</assignedProductView>