Platforms

Fetch Platform Content Manual

Fetch a specific platform manual

get
/v1/platform/content/manual/{manualId}/fetch

Description

Retrieves the complete content and metadata of a specific manual. This includes the markdown content and all associated frontmatter.

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

manualIdstring* Required

The ID of the manual to fetch

import { ChatBotKit } from '@chatbotkit/sdk'

const cbk = new ChatBotKit({

secret: process.env.CHATBOTKIT_API_KEY!

})

const response = await cbk.platform.content.manual.fetch(

manualId
)
{
"name":"string",
"description":"string",
"meta":"object",
"id":"string",
"createdAt":"number",
"updatedAt":"number",
"category":"string",
"tags":[
"string"
],
"index":"number",
"content":"string",
"url":"string"
}
The manual was retrieved successfully