Motive Data Type

A motive (artwork or image) in the platform's motive library. Motives are the graphical assets applied to product print areas during the design process.

Available Since
1.3.0
Subtypes
MotiveCustomizable
Properties
Name Type Description
id number Unique numeric identifier for the motive.
uuid string Unique UUID identifier for the motive.
name string The nonlocalized name of the motive.
type MotiveType The type of the motive. Possible values are VECTOR, HIGH_DENSITY_VECTOR, HIGH_RESOLUTION_BITMAP, USER_BITMAP.
Used in
Motive (JSON)
{
  "motive" : {
    "id" : 12345,
    "uuid" : "...",
    "name" : "funny thing",
    "type" : "VECTOR"
  }
}
Motive Data Type

A motive (artwork or image) in the platform's motive library. Motives are the graphical assets applied to product print areas during the design process.

Available Since
1.3.0
Subtypes
MotiveCustomizable
Properties
Name Type Description
id int Unique numeric identifier for the motive.
name string The nonlocalized name of the motive.
type MotiveType The type of the motive. Possible values are VECTOR, HIGH_DENSITY_VECTOR, HIGH_RESOLUTION_BITMAP, USER_BITMAP.
uuid string Unique UUID identifier for the motive.
Used in
Motive (XML)
<motive>
  <id>...</id>
  <uuid>...</uuid>
  <name>funny thing</name>
  <type>VECTOR</type>
</motive>