Update Conversation

Update conversation

post
/v1/conversation/{conversationId}/update

Authorization

ChatBotKit API Secret * Required

HTTP Authorization Scheme: bearer

Path Parameters

conversationIdstring* Required

Request Body * Required

Request Body Schema: application/json

botIdstring

The bot id assigned to this conversation

backstorystring

The backstory for the conversation

modelstring

The model to use for the conversation

datasetIdstring

The ID of the dataset to use for the conversation

skillsetIdstring

The ID of the skillset to use for the conversation

privacyboolean

Turn conversation privacy features on

moderationboolean

Turn conversation moderation features on

metaobject

Meta data information

curl -X POST "https://api.chatbotkit.com/v1/conversation/{conversationId}/update" \

-H "Authorization: Bearer $CHATBOTKIT_API_SECRET" \

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

--data-binary @- << EOF {
"botId":"string",
"backstory":"string",
"model":"string",
"datasetId":"string",
"skillsetId":"string",
"privacy":"boolean",
"moderation":"boolean",
"meta":"object"
}
EOF
{
"id":"string"
}
The conversation was updated successfully