Create PDF from HTML
documentedCreate a PDF from HTML content (web or static HTML/URL input).
POST /operation/htmltopdfPDF Services APIno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://pdf-services.adobe.io/operation/htmltopdf" \
-X POST \
-H "x-api-key: {{ADOBE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"assetID": "{{$asset_id}}", "json": "{{$json_input}}", "includeHeaderFooter": {{$include_header_footer}}, "pageLayout": {"pageWidth": {{$page_width}}, "pageHeight": {{$page_height}}}, "waitTimeToLoad": {{$wait_time_to_load}} }'