Generate a PDF
1
Open the share dialog
From the project, open Share and switch to the Download tab.
2
Click Generate New PDF
Oviond queues a generation job. The button shows Generating (or a queued count) while it works, and a new entry appears in the Download History list in a processing state.
3
Download
When the job completes, the history row flips to a success state and a Download link appears. Use the trash icon to remove an export and its stored file.
How it works
Generation is a two-step asynchronous flow:POST /v1/pdf/generatevalidates the request and enqueues the job, returning ajob_id. The request specifies theproject_id,client_id, a pageformat(A4 or Letter), andorientation(portrait or landscape). The defaults areA4andportrait.GET /v1/pdf/status/:job_idis polled untilstatusiscomplete(which returns the fileurl) orfailed.
PDF generation requires Oviond’s file storage (S3) to be configured. If it isn’t, the generate request is rejected.