ProductViewExpanded Data Type

ProductViewPrime with embedded print areas. Use this representation to get the full view and area configuration for a product side in one call.

Available Since
1.3.0
Properties
Name Type Description
localizations array of ProductViewLocalized A list of localization objects.
Inherited from ProductView
NameTypeDescription
id number Unique numeric identifier for the ProductView.
name string The nonlocalized name of the view.
position ViewPosition The identification of the product side.
ProductViewExpanded (JSON)
{
  "productViewExpanded" : {
    "localizations" : {
      "productViewLocalized" : [ {
        "id" : 12345,
        "language" : {
          "id" : 12345,
          "code" : "en",
          "name" : "English"
        },
        "name" : "Vorne"
      }, {
        "id" : 12345,
        "language" : {
          "id" : 12345,
          "code" : "en",
          "name" : "English"
        },
        "name" : "Vorne"
      } ]
    },
    "id" : 12345,
    "name" : "Front view",
    "position" : "Front"
  }
}
ProductViewExpanded Data Type

ProductViewPrime with embedded print areas. Use this representation to get the full view and area configuration for a product side in one call.

Available Since
1.3.0
Properties
Name Type Description
productViewLocalized list of ProductViewLocalized A list of localization objects.
Inherited from ProductView
NameTypeDescription
id int Unique numeric identifier for the ProductView.
name string The nonlocalized name of the view.
position ViewPosition The identification of the product side.
ProductViewExpanded (XML)
<productViewExpanded>
  <localizations>
    <productViewLocalized>
      <id>...</id>
      <language>
        <id>...</id>
        <code>en</code>
        <name>English</name>
      </language>
      <name>Vorne</name>
    </productViewLocalized>
  </localizations>
  <id>...</id>
  <name>Front view</name>
  <position>Front</position>
</productViewExpanded>