appgram / docs
Dashboard

API REFERENCE

Help Center

Programmatic access to help center flows, articles, and collections.

v1.0
5 endpoints Authentication →

Portal - Help

Get help center

Get the live help collection and flows for a project (public endpoint)

GET /portal/help

Query parameters

project_id string query required

Project ID

GET /portal/help bash
curl --request GET \
  --url https://api.appgram.dev/portal/help

Portal - Help

Get help article

Get a specific help article by slug (public endpoint)

GET /portal/help/articles/{slug}

Path parameters

slug string path required

Article slug

Query parameters

flow_id string query required

Flow ID

project_id string query

Project ID

GET /portal/help/articles/{slug} bash
curl --request GET \
  --url https://api.appgram.dev/portal/help/articles/{slug}

Portal - Help

Get decision node

Get a specific decision node by ID for navigation in decision tree flows (public endpoint)

GET /portal/help/decision-nodes/{id}

Path parameters

id string path required

Decision node ID

GET /portal/help/decision-nodes/{id} bash
curl --request GET \
  --url https://api.appgram.dev/portal/help/decision-nodes/{id}

Portal - Help

Get help flow

Get a specific help flow by slug (public endpoint)

GET /portal/help/flows/{slug}

Path parameters

slug string path required

Flow slug

Query parameters

project_id string query required

Project ID

GET /portal/help/flows/{slug} bash
curl --request GET \
  --url https://api.appgram.dev/portal/help/flows/{slug}