Skip to main content
GET
/
api
/
knowledge
/
{id}
Get a knowledge document
curl --request GET \
  --url https://core-api.getaptly.com/api/knowledge/{id} \
  --header 'x-token: <api-key>'
{
  "_id": "kdoc_abc123",
  "name": "Lease Addendum Policy",
  "html": "<p>This policy applies to all lease agreements...</p>"
}

Authorizations

x-token
string
header
required

Path Parameters

id
string
required

The knowledge document ID.

Response

Knowledge document content.

_id
string

Document ID.

name
string

Document title.

html
string

Document body rendered as HTML.