> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qobra.co/llms.txt
> Use this file to discover all available pages before exploring further.

# get_help_center_article

Return one Help Center article's full markdown body, by id or name.

The natural follow-up to `list_help_center_articles`: take a row's `id` (or
an article name) and read the whole article — its title, author description,
full body (markdown) and source url. Articles are global Qobra product docs.

## Parameters

<Accordion title="Body" defaultOpen>
  <ParamField body="article" type="string" required>
    The Help Center article id (as returned in the id field by
    list\_help\_center\_articles) or an article name, matched as a case-insensitive
    substring of the title. A name matching no — or more than one — article
    raises a clear error; pass the id to disambiguate.
  </ParamField>
</Accordion>

## Response

<Accordion title="Body" defaultOpen>
  <ResponseField name="id" type="string" />

  <ResponseField name="title" type="string" />

  <ResponseField name="description" type="string">
    The author-written description.
  </ResponseField>

  <ResponseField name="body" type="string" />

  <ResponseField name="resource_url" type="string">
    Public URL of this help-center article (an external help.qobra.co link, not
    a Qobra web-app page); null if unpublished.
  </ResponseField>

  <ResponseField name="updated_at" type="string" />
</Accordion>
