Fetch a cached export (SignalR result generation)
Pulls back an export synchronously, in the response body. This works only for exports produced through a SignalR result-generation request — the webhook-delivered GET /v1/nesting/export path does not populate this cache, so asking for something requested that way will always report not-ready.
When the requested export is available, Ready is true and PayloadJson carries it. Otherwise Ready is false and Error explains why. Cached exports have a limited lifetime (see ExpiresUtc), so fetch promptly.
Authorizations
Headers
Accept Header
application/json Query Parameters
The job whose cached export you want. This is NestIdentifier in the webhook payload.
The specific result whose cached export you want (ResultIdentity in the webhook payload).
Which cached export to fetch. Must match the ResponseType generated over SignalR.
Result, Render, DXF, ReportSource, RemnantExport, Runtime, PartsExport Response
The cached export if ready (Ready = true), otherwise Ready = false with a reason.
CachedNestingExportResponse
true if the requested export is available in PayloadJson; false if it has not been generated or has expired.
Explanation when Ready is false; otherwise null.
The job the export belongs to.
The result the export belongs to.
The export type this response carries.
The export itself, as JSON, when Ready is true; otherwise null.
When the cached export was generated (UTC).
When the cached export expires and is no longer retrievable (UTC).