Create Skillset Ability

Create ability

post
/v1/skillset/{skillsetId}/ability/create

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

skillsetIdstring* Required

Request Body * Required

Request Body Schema: application/json

namestring

The associated name

descriptionstring

The associated description

metaobject

Meta data information

secretIdstring

The ID of the secret associated with the ability

instructionstring

The instruction of the ability

curl -X POST "https://api.chatbotkit.com/v1/skillset/{skillsetId}/ability/create" \

-H "Authorization: Bearer $CHATBOTKIT_API_SECRET" \

-H "Content-Type: application/json" \

--data-binary @- << EOF {
"name":"string",
"description":"string",
"meta":"object",
"secretId":"string",
"instruction":"string"
}
EOF
{
"id":"string"
}
The ability was created successfully