Get Article Section
get_article_sectionRetrieve content of a specific article section using article ID, locale, and section index. First use get_article_outline to discover 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 |
|---|---|---|---|
| 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 |
| locale | Yes | Locale of the body (e.g., "en-us", "fr") | |
| article_id | Yes | Article ID — the numeric id of the Help Center article. Obtain it from list_articles or search_articles. | |
| section_index | Yes | 0-based index of the section (see get_article_outline) |