PDF
Generate PDF
Enqueue a PDF generation job for a project.
POST
Generate PDF
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Enqueue a PDF generation job for a project.
curl --request POST \
--url https://api.oviond.com/v1/pdf/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "proj_abc123",
"client_id": "client_xyz",
"format": "A4",
"orientation": "portrait"
}
'{
"success": true,
"data": {
"job_id": "pdf_job_abc123",
"message": "PDF generation queued"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request POST \
--url https://api.oviond.com/v1/pdf/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "proj_abc123",
"client_id": "client_xyz",
"format": "A4",
"orientation": "portrait"
}
'{
"success": true,
"data": {
"job_id": "pdf_job_abc123",
"message": "PDF generation queued"
}
}