Update a scheduled or published post.
Usage
simplified posts:update [options]Options
| Flag | Short | Type | Description |
|---|---|---|---|
--post-id | string | Post ID to update (required) | |
--content | -c | string | New post content |
--date | string | New date YYYY-MM-DD | |
--time | string | New time HH:MM | |
--timezone | string | Timezone (default: UTC) | |
--media | string | New media URL |
Examples
# Update caption
simplified posts:update --post-id "POST_ID" -c "Revised caption"
# Reschedule
simplified posts:update \
--post-id "POST_ID" \
--date "2026-04-05" \
--time "10:00" \
--timezone "UTC"
# Replace media
simplified posts:update --post-id "POST_ID" --media "https://example.com/new-image.jpg"