Generate a production export for a completed nest
Generates an export from a completed nesting result and delivers it asynchronously to your webhook.
This call does not return the export in the response body. It validates the request, queues the export, and returns immediately with { "Success": true }. When the export has been generated it is POSTed to the WebHookUri you supply.
Use ResponseType to choose what is produced:
Result(0) — part-placement details for the resultRender(1) — a base64-encoded render (SVG or PNG) of the layoutDXF(2) — a base64-encoded DXF file of the nested layoutReportSource(3) — statistics and base64 renderings for report generationRemnantExport(4) — a base64-encoded zip of DXF files representing the remnantsRuntime(5) — information about the result together with a render; requires runtime render settings to have been supplied on the original nesting requestPartsExport(6) — a DXF export of the individual part geometry from the nesting request
Each ResponseType may be requested once per result by default; requesting an export you have already requested returns an error.
Authorizations
Headers
Accept Header
application/json Query Parameters
The completed job to export. This is NestIdentifier in the webhook payload, and is the id returned from the nesting endpoint.
The specific result to export. This is ResultIdentity in the webhook payload and in GET /v1/nesting/status.
Which export to generate. Accepts the name or the integer — see the endpoint description for the meaning of each value.
Result, Render, DXF, ReportSource, RemnantExport, Runtime, PartsExport The URL the generated export is POSTed to when it is ready. Required — without it the export has nowhere to be delivered.
Uri
Response
The export request was accepted and queued for delivery to your webhook.