@squidcloud/client
    Preparing search index...

    Interface CreatePdfFromUrlRequest

    Request payload for creating a PDF from a URL.

    interface CreatePdfFromUrlRequest {
        outputOptions?: CreatePdfOutputOptions;
        title?: string;
        type: "url";
        url: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    outputOptions?: CreatePdfOutputOptions

    The formatting options for the PDF document. Can be either a predefined format (like 'letter') or custom dimensions.

    title?: string

    Optional title for the PDF document.

    type: "url"

    The type of PDF creation, always 'url' for this request.

    url: string

    The URL of the webpage to convert into a PDF.