Update Scheduled Post
postnitro_update_scheduled_postUpdate an existing scheduled post or draft. The body and validation mirror postnitro_create_scheduled_post exactly.
The update REPLACES the post's captions and selected accounts with what you send — send the full intended state, not just changed fields. Tip: call postnitro_get_scheduled_post first to read the current values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | 'DRAFT' or 'SCHEDULED' | |
| designId | No | ID of a design in your workspace to attach. This is the design ID (the `designId` field from a carousel's output / postnitro_get_output), NOT the generation job's embedPostId — passing an embedPostId here fails with 'Design not found.' A post must have either a designId or non-empty postContent. May only be null/omitted for DRAFT. | |
| postContent | No | Caption text keyed by platform. Required unless a designId is set; at least one key must be non-empty. Hashtags are extracted automatically. | |
| scheduledAt | Yes | ISO-8601 datetime string. Must be in the future (for both drafts and scheduled posts). | |
| postSettings | No | Video render settings, used when any resolved postType is 'reel'. Optional: when omitted, the API fills each field from the videoSettings the attached design was generated with, falling back to 30 seconds with no audio. Same shape as a VIDEO post's videoSettings. | |
| scheduledPostId | Yes | The scheduled-post ID to update (get from postnitro_list_scheduled_posts) | |
| selectedAccounts | No | Social-account IDs to publish to (from postnitro_list_social_accounts). The platforms among these determine which *PostSettings are required. | |
| tiktokPostSettings | No | Required when a TikTok account is selected AND a designId is set. When SCHEDULED: if isBrandedContent is true, at least one of isYourBrand/isThirdPartyBrand must be true, and isBrandedContent cannot be true with privacyLevel SELF_ONLY. | |
| threadsPostSettings | No | Required when a Threads account is selected AND a designId is set | |
| linkedinPostSettings | No | Required when a LinkedIn account is selected. A designId is required when status is SCHEDULED (text-only LinkedIn posts can only be drafts). | |
| instagramPostSettings | No | Required when an Instagram account is selected AND a designId is set |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post | Yes | A scheduled post or draft | |
| message | Yes | Confirmation message | |
| success | Yes | ||
| warnings | No | Non-fatal issues worth surfacing to the user (e.g. AI image generation did not complete) | |
| scheduledPostId | Yes | ID of the scheduled post — pass to get/update/delete |