Skillset Abilitys
Fetch Skillset Ability
Fetch a ability from a skillset
get
/v1/skillset/{skillsetId}/ability/{abilityId}/fetch
Authorization
ChatBotKit API Secret * Required
HTTP Authorization Scheme: bearer
Path Parameters
skillsetIdstring* Required
The ID of the skillset
abilityIdstring* Required
The ID of the ability to retrieve
import { ChatBotKit } from '@chatbotkit/sdk'
const cbk = new ChatBotKit({
secret: process.env.CHATBOTKIT_API_KEY!
})
const response = await cbk.skillset.ability.fetch(
skillsetId, abilityId)
{"name":"string","description":"string","meta":"object","id":"string","createdAt":"number","updatedAt":"number","secretId":"string","botId":"string","instruction":"string"}
The skillset was retrieved successfully