get_blog_article
Retrieve a blog article by ID. Choose short, medium, or full detail for summary fields or complete content with preview and edit links.
Instructions
Fetch a blog article by ID. detail='short' returns id/title/slug/status; detail='medium' adds excerpt+wordCount+previewUrl+editUrl; detail='full' (default) returns the COMPLETE content plus previewUrl (GUI preview link) and editUrl (dashboard editor link). Pass maxContentChars only if you need to bound the body size; omit it to get the whole article.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| detail | No | Verbosity of returned item(s): "short" = id + primary label + status (cheap list scan); "medium" = key summary fields + counts (a useful glance); "full" = the complete object. Default "full". Lists default to "short" — to zoom into one item, call its get/view tool with detail="medium" or "full". | full |
| brandId | No | Brand ID (uses active brand if omitted) | |
| articleId | Yes | Blog article ID | |
| maxContentChars | No | Optional cap on the returned content body length (full detail only). Omit to return the ENTIRE article body. Use only to bound payload size for small clients. |