Objects | nesting

This object represents a custom nesting (also known as imposition or layout), which is an arrangement of one or more dielines on a sheet according to specified dimensions and a nesting template.

type string "nesting"
id string Unique identifier for the nesting. For example : "ne_wpxjk9m2nlrw"
dieline_id string The unique identifier of the dieline that was nested. For example : "di_ueipnpyp0rlw"
dieline_template_id string The catalog identifier of the dieline template. For example : "becf-10301"
nesting_template_id string The unique identifier of the nesting template used to create this nesting. For example : "lt_xyz123abc"
variables object The variables used to create this nesting, including sheet dimensions, dieline variables and number of dielines used.
For example:
{
  "unit": "mm",
  "sheet_width": 1000.00,
  "sheet_height": 700.00,
  "sheet_margin_top": 15.00,
  "sheet_margin_bottom": 20.00,
  "sheet_margin_side": 10.00,
  "dieline_variables": {
    "unit": "mm",
    "width": 100,
    "height": 150,
    "length": 50,
    "material": "0.8"
  },
  "num_x": 3,
  "num_y": 2,
  "margin_x": 10,
  "margin_y": 20,
}
        
format string The file format of the nesting. Valid values: "pdf", "svg", "dxf"
width length The width of the nesting.
For example:
{
  "value": 990.00,
  "unit": "mm"
} 

Possible "unit" values are: "mm" or "in".
height length The height of the nesting.
For example:
{
  "value": 880.00,
  "unit": "mm"
} 

Possible "unit" values are: "mm" or "in".
nesting_overflow boolean Is set to "true" if the nesting does not fit the sheet.
sum_of_line_lengths array Sum of line lengths.
[
  {
    "name": "Cut",
    "unit": "mm",
    "value": 3000.00
  },
  {
    "name": "Crease",
    "unit": "mm",
    "value": 5000.00
  },
  {
    "name": "Total",
    "unit": "mm",
    "value": 8000.00
  }
] 
url string A URL to download the nesting file.
Example: "https://d2atdwxjx7uc4i.cloudfront.net/nestings/abc123.pdf"
created_at string ISO 8601 timestamp of when the nesting was created.
Example: "2024-12-18T19:27:22Z"