Update a Post
Update a scheduled post's metadata
Update the scheduleDate of a post, approval status of a post, notes, or visibility of a posted YouTube video.
The post must originally have a
scheduleDateand be in a "pending"status. Thestatuscan be checked with the /history or GET /post endpoints.- The YouTube video must have been successfully posted to change visibility.
The approval workflow requires the current status of the post be in "awaiting approval".
Other parameters cannot be updated. You will need to delete the post and repost.
Header Parameters
AuthorizationstringrequiredProfile-KeystringBody Parameters
idstringrequiredACME Post ID of the post to update. ACME Post ID returned from /post.
approvedbooleandefault: falseThe original post requires approval and has a status of "awaiting approval", set to true to
approve and publish the post.
disableCommentsbooleandefault: falseEnable or disable comments on a post. Setting to true will disable comments. Setting to false will enable comments.
Supported platforms: Instagram and LinkedIn.
- Enabling or disabling can be done on either a scheduled post or a published post.
- Disabling comments on a published post will not delete existing comments.
- Disabling LinkedIn comments will delete all existing comments on the thread.
- Instagram comments will not be deleted.
- TikTok comments cannot be changed after publishing.
notesstringSet notes on a post that can be retrieved via the /history endpoint. Notes are for reference only and do not affect the post.
scheduleDatestringThe datetime to schedule a future post. Accepts a UTC date time.
For example, use format YYYY-MM-DDThh:mm:ssZ and send as 2026-07-08T12:30:00Z.
Please see utctime for more examples.
scheduledPausebooleandefault: falsePause or unpause a scheduled post. If a post is unpaused and the scheduleDate is in the past,
the post will immediately be publish. Consider updating the scheduleDate before unpausing.
youTubeOptionsobjectUpdate the visibility of the YouTube video with the visibility field and values unlisted, private, or public.
Update the description, title, or categoryId. If no description or categoryId originally set, the default values are "" and 24 (Entertainment), respectively.
curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"id": "s8k2jsk0pl", "scheduleDate": "2023-07-08T12:30:00Z", scheduledPause: true}' \
-X PATCH https://api.acme.com/api/post{
"status": "success",
"id": "ZSU1tnnuykDy25wA6kvX", // ACME Post ID
"scheduleDate": "2025-07-08T12:30:00Z",
"scheduledPaused": true
}