List Post Results
list_post_resultsCheck per-platform publishing results for a post. Returns each platform's status, platform post ID, error, and publish time; use it to confirm completion and identify failed platforms for retry.
Instructions
Get one post's per-platform publishing outcomes: { postId, status, results[] } where each result has platformId, platform, accountName, status (PENDING, PUBLISHING, PUBLISHED, or FAILED), platformPostId, errorMessage, and publishedAt. Each platform reports separately, so read every row instead of treating the post as one pass or fail. Call this after create_post, publish_draft, or retry_failed_platforms, since publishing is asynchronous and their responses only confirm queueing; poll until no row is PENDING or PUBLISHING. Take platformId from FAILED rows for retry_failed_platforms. Use get_post when you also need the content and schedule.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Post ID from create_post, publish_draft, bulk_schedule_posts, or list_posts |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | An object with postId, the overall post status, and results: one { platformId, platform, accountName, status, platformPostId, errorMessage, publishedAt } per targeted platform. |