REST APIGET
Beitragsergebnisse
Erhalten Sie plattformspezifische Veröffentlichungsergebnisse
GET
https://post.adaptlypost.com/post/api/v1/social-posts/:id/resultsGibt 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.
| Feld | Beschreibung |
|---|---|
platformId | Plattformeintrag-ID |
platform | Plattformname |
accountName | Name des verbundenen Kontos |
status | Veröffentlichungsstatus (PENDING, POSTED, FAILED, SCHEDULED) |
platformPostId | Native Post-ID auf der Plattform (bei Veröffentlichung) |
errorMessage | Fehlerdetails (bei Fehlschlag) |
publishedAt | Verö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
}
]
}