Update Skillset Ability

Update a skillset ability

post
/v1/skillset/{skillsetId}/ability/{abilityId}/update

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

skillsetIdstring* Required

abilityIdstring* 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 text to update the ability with

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

-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 updated successfully