Conversation Notes
Authorizations
x-chatcaptain-keystringRequired
Path parameters
chatbotIdstringRequired
The ID of the chatbot.
conversationIdstringRequired
The Id of the conversation to add notes to.
Body
notesstring[] · min: 1RequiredExample:
The notes to remove from the conversation.
["Resolved","Duplicate inquiry"]Responses
200Success
application/json
object · ConversationNotesResponseDtoOptional
403
Insufficient permissions.
delete/v1/chatbots/{chatbotId}/conversations/{conversationId}/notes
DELETE /v1/chatbots/{chatbotId}/conversations/{conversationId}/notes HTTP/1.1
Host: api.chatcaptain.com
x-chatcaptain-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 42
{
"notes": [
"Resolved",
"Duplicate inquiry"
]
}{}Authorizations
x-chatcaptain-keystringRequired
Path parameters
chatbotIdstringRequired
The ID of the chatbot.
conversationIdstringRequired
The Id of the conversation to add notes to.
Body
notesstring[] · min: 1RequiredExample:
The notes to add to the conversation.
["Customer requested callback","Issue escalated to supervisor"]Responses
200Success
application/json
object · ConversationNotesResponseDtoOptional
403
Insufficient permissions.
patch/v1/chatbots/{chatbotId}/conversations/{conversationId}/notes
PATCH /v1/chatbots/{chatbotId}/conversations/{conversationId}/notes HTTP/1.1
Host: api.chatcaptain.com
x-chatcaptain-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 73
{
"notes": [
"Customer requested callback",
"Issue escalated to supervisor"
]
}{}Last updated