SkillServer Integrations

Fetch Skill Server Manual

Fetch the SkillServer manual

get
/v1/integration/skillserver/{skillserverIntegrationId}/invoke

Description

Returns a text-first manual describing the abilities exposed by this skill server and how to invoke them. Authenticated with the static access token as a bearer token.

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

skillserverIntegrationIdstring* Required

The ID of the SkillServer integration

import { ChatBotKit } from '@chatbotkit/sdk'

const cbk = new ChatBotKit({

secret: process.env.CHATBOTKIT_API_KEY!

})

const response = await cbk.integration.skillserver.invoke(

skillserverIntegrationId
)