Skip to main content
Guides live in the connector YAML under support.guides, so they ship and version with the connector instead of going stale in a separate docs site while the connector changes. Fetch them from the API to render in your own product.

support and Guides

The schema: sections, steps, warnings, images, and scope filtering.

Fetch the guides

Guides come back from GET /actions when you ask for them:

GET /actions

Full parameter and response reference.

Response shape

Guides are nested per authentication method, since each method needs different instructions:

Render in your own UI

1

Fetch and parse

The shape is small enough to type by hand. title and content are always present; everything else is optional:
In the browser, swap Buffer.from(...) for btoa($:).
2

Render content

content and list items contain markdown: links, bold for UI labels, backticks for URLs and values. Render them through a markdown component such as react-markdown and sanitize the output. Building HTML strings by hand and injecting them with dangerouslySetInnerHTML puts provider-authored text straight into your DOM.
3

Filter by scope

applicableScopes marks a section or step as relevant only to certain scopes, so a read-only integration isn’t told to grant write access. It’s a space-separated string, so split it before comparing:
A section with no applicableScopes always shows. Steps carry the same field, so filter them the same way.

YAML Schema

The guide, section, and step fields in full.