FoPost LogoFoPost Docs
Pro Features

Delivery Logging

Detailed logs of publishing activity.

Delivery Logging

Pro

OwlStack logs every publish attempt, retry, and result. Access logs via the dashboard or API.

Dashboard

View logs at Project > Delivery Logs in the OwlStack dashboard. Filter by:

  • Platform
  • Status (published, failed, retrying)
  • Date range
  • Post ID

API access

$logs = $client->deliveryLogs([
    'platform' => 'twitter',
    'status' => 'failed',
    'from' => '2026-02-01',
    'to' => '2026-02-14',
]);

foreach ($logs as $log) {
    echo "{$log->postId()} | {$log->platform()} | {$log->status()}\n";
    echo "  Created: {$log->createdAt()}\n";
    echo "  Attempts: {$log->attempts()}\n";
    if ($log->error()) {
        echo "  Error: {$log->error()}\n";
    }
}

Log retention

PlanRetention
Pro30 days
Pro + AI30 days
Enterprise90 days (or custom)

Log entry fields

FieldDescription
postIdThe OwlStack post ID
platformTarget platform
statuspublished, failed, retrying
externalIdPlatform's post ID (if published)
externalUrlURL to the post (if published)
errorError message (if failed)
attemptsNumber of publish attempts
createdAtWhen the publish was initiated
publishedAtWhen it was successfully published

On this page