Create a Buffer Draft Post (no approval needed — nothing goes live)
buffer_create_draft_postCreate a draft post on Buffer to review and iterate content before publishing. Drafts are saved securely and cannot go live.
Instructions
Create a real Buffer draft post. Always saved as a draft (saveToDraft is hardcoded true, not a parameter) — use this freely for review/iteration without needing prior approval, since it cannot publish anything. For an approved post that should actually go live, use buffer_publish_post instead.
Args:
channelId (string): Buffer channel ID from buffer_list_channels.
text (string): Exact post body text.
suggestedDueAt (string, ISO 8601 UTC, optional): informational only.
Returns JSON: { "id", "text", "dueAt" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The post body text, exactly as it should appear on the channel. | |
| channelId | Yes | Buffer channel ID. Get this from buffer_list_channels. | |
| suggestedDueAt | No | Optional suggested publish time shown on the draft for reference only. |