validate_postread onlyValidate a post
Dry-runs the same checks as create_post without writing anything. Use it before creating a post you are unsure about.
- Category
- Posts
- Calls
- POST/v1/posts/validate
- Safe to auto-approve
- Yes. It only reads data.
Parameters
profileIdstringoptionalProfile to act on. Omit to use the profile this API key belongs to. Call list_profiles first when managing several customers.
contentstringoptionalPost text or caption.
object[]optional
Images or a video. Upload with upload_media first.
accountIdsstring[]optionalAccount `id` values from list_accounts.
scheduledAtstringoptionalISO 8601 datetime to publish at, for example 2026-08-01T12:00:00Z.
publishNowbooleanoptionalPublish immediately. Omit together with scheduledAt to save a draft.
platformsobjectoptionalPer-platform options keyed by platform name.
Example
A tool call as an MCP client would send it.
{
"name": "validate_post",
"arguments": {
"content": "Shipping today.",
"accountIds": [
"string"
]
}
}