Platforms

List Platform Content Tutorials

Retrieve a list of platform tutorials

get
/v1/platform/content/tutorial/list

Description

Returns a list of available tutorials with their metadata.

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

cursorstring

The cursor to use for pagination

orderstring

The order of the paginated items

takeinteger

The number of items to retrieve

metaobject

Key-value pairs to filter the partner users by metadata

import { ChatBotKit } from '@chatbotkit/sdk'

const cbk = new ChatBotKit({

secret: process.env.CHATBOTKIT_API_KEY!

})

const response = await cbk.platform.content.tutorial.list(

)
{
"items":[
{
"name":"string",
"description":"string",
"meta":"object",
"id":"string",
"createdAt":"number",
"updatedAt":"number",
"category":"string",
"tags":[
"string"
],
"index":"number",
"url":"string"
}
]
}
The list of tutorials was retrieved successfully