REST APIGET

Beitragsergebnisse

Erhalten Sie plattformspezifische Veröffentlichungsergebnisse

GEThttps://post.adaptlypost.com/post/api/v1/social-posts/:id/results

Gibt detaillierte Veröffentlichungsergebnisse pro Plattform für einen bestimmten Beitrag zurück, einschließlich Plattform-Post-IDs, Fehlermeldungen und Veröffentlichungszeitstempel.

API-Schlüssel (Bearer-Token)

Ergebnisse pro Plattform

Jeder Eintrag im Ergebnis-Array enthält das Veröffentlichungsergebnis für eine Plattform.

FeldBeschreibung
platformIdPlattformeintrag-ID
platformPlattformname
accountNameName des verbundenen Kontos
statusVeröffentlichungsstatus (PENDING, POSTED, FAILED, SCHEDULED)
platformPostIdNative Post-ID auf der Plattform (bei Veröffentlichung)
errorMessageFehlerdetails (bei Fehlschlag)
publishedAtVeröffentlichungszeitstempel
Beitragsergebnisse abrufen
curl --request GET \
  --url https://post.adaptlypost.com/post/api/v1/social-posts/post_xyz789/results \
  --header 'Authorization: Bearer <api-key>'
200
{
  "postId": "post_xyz789",
  "status": "COMPLETED",
  "results": [
    {
      "platformId": "pp_001",
      "platform": "TWITTER",
      "accountName": "@yourhandle",
      "status": "PUBLISHED",
      "platformPostId": "1234567890",
      "errorMessage": null,
      "publishedAt": "2026-03-14T14:00:02Z"
    },
    {
      "platformId": "pp_002",
      "platform": "LINKEDIN",
      "accountName": "Your Company",
      "status": "FAILED",
      "platformPostId": null,
      "errorMessage": "Image format not supported",
      "publishedAt": null
    }
  ]
}