๐Ÿ“„Create a Briefing Document from a PDF Upload

This snippet mirrors the PDF-based document recipe using an uploaded file ID.

<?php

$token = getenv('AUTOCONTENT_TOKEN') ?: 'YOUR_API_TOKEN';
$fileId = getenv('FILE_ID') ?: 'YOUR_FILE_ID';
$endpoint = 'https://api.autocontentapi.com/content/Create';

$payload = [
  'outputType' => 'briefing_doc',
  'format' => 'html',
  'resources' => [
    [
      'type' => 'file',
      'content' => $fileId,
    ]
  ],
  'text' => 'Turn this uploaded report into an HTML briefing with headings, bullets, and a recommendations section.',
];

$body = json_encode($payload);
if ($body === false) {
    fwrite(STDERR, 'Failed to encode payload: ' . json_last_error_msg() . "\n");
    exit(1);
}

$ch = curl_init($endpoint);
curl_setopt_array($ch, [
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer ' . $token,
        'Content-Type: application/json',
        'Accept: application/json',
    ],
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $body,
    CURLOPT_RETURNTRANSFER => true,
]);

$response = curl_exec($ch);
if ($response === false) {
    fwrite(STDERR, 'Request failed: ' . curl_error($ch) . "\n");
    curl_close($ch);
    exit(1);
}

$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($status >= 400) {
    fwrite(STDERR, "HTTP $status\n$response\n");
    exit(1);
}

echo "Document request accepted:\n" . $response . "\n";

Set YOUR_API_TOKEN (or AUTOCONTENT_TOKEN) and FILE_ID before running.

See also

Last updated