Create Design Proof PDF

Creates a shareable URL that lets anyone with the link download a proof PDF for one or more designs. The PDF contains one page per design followed by a page per unique logo placed on the designs.

The returned URL is permanent and can be shared with customers, suppliers, or anyone else who needs to view the proof — no API key or login is required to open it.

POST /api/proof-pdf/designs

Body #

ParameterTypeDescription
designIdsarray of integerA list of design IDs to include in the proof PDF. At least 1 and at most 20 designs per call. Duplicates are allowed and produce duplicate pages.

Example Request #

{
  "designIds": [54321, 54322, 54323]
}

Returns #

Returns an object containing the shareable URL.

{
  "url": "https://www.kitmaker.eu/public/proof-pdf?token=2_kOH..."
}