posts:update

Update a scheduled or published post.

Usage

simplified posts:update [options]

Options

FlagShortTypeDescription
--post-idstringPost ID to update (required)
--content-cstringNew post content
--datestringNew date YYYY-MM-DD
--timestringNew time HH:MM
--timezonestringTimezone (default: UTC)
--mediastringNew 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"