Get Article Section
get_article_sectionRetrieve a specific section of a Zendesk Help Center article in HTML or Markdown format. Use with get_article_outline to obtain section indexes.
Instructions
Retrieve the content of a single section of an article in a given locale. Use get_article_outline first to discover section indexes. Default format="html" for round-trip safety. Pass format="markdown" only for human review — the Markdown representation is lossy on some structures ( with , tables with multi- cells are kept as raw HTML to limit the damage, but do not round-trip markdown content back through update_article_section).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | Article ID | |
| locale | Yes | Locale of the body (e.g., "en-us", "fr") | |
| section_index | Yes | 0-based index of the section (see get_article_outline) | |
| format | No | Output format. "html" (default) is round-trip safe. "markdown" is lossy on some HTML structures — use only for human review, not before update_article_section. | html |