documents->preview
documents->preview(string $id): PoliPageDocumentPreviewResult Retrieve a stored document’s paginated HTML preview. The deployed API responds with text/html directly and exposes the page count via the X-Document-Page-Count header — the SDK assembles the envelope from both.
Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
$id | string | required | (no description) |
Returns
Section titled “Returns”\PoliPage\DocumentPreviewResult
Errors
Section titled “Errors”| Code | When |
|---|---|
DOCUMENT_NOT_FOUND | See [errors](../../../production/errors/) for the full description. |
INVALID_API_KEY | See [errors](../../../production/errors/) for the full description. |
INTERNAL_ERROR | See [errors](../../../production/errors/) for the full description. |
Example
Section titled “Example”<?php
declare(strict_types=1);
require __DIR__ . '/../vendor/autoload.php';
use PoliPage\PoliPage;
$client = PoliPage::client($_ENV['POLI_PAGE_API_KEY']);
$documentId = $argv[1] ?? throw new RuntimeException('usage: documents-preview.php <documentId>');
$preview = $client->documents->preview($documentId);
echo "pageCount: {$preview->pageCount}\n";file_put_contents('./preview.html', $preview->html);