Skip to main content
POST
/
upload-chatbot-profile-picture
Upload chatbot profile picture
curl --request POST \
  --url https://www.chatbase.co/api/v1/upload-chatbot-profile-picture \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form chatbotId=ckl123abc456 \
  --form profilePictureFile=@example-file
{
  "message": "Chatbot Profile Picture uploaded successfully."
}

Authorizations

Authorization
string
header
required

API key in Bearer token format

Body

multipart/form-data
chatbotId
string
required

ID of the chatbot

Example:

"ckl123abc456"

profilePictureFile
file
required

Profile picture image file

Response

Profile picture uploaded successfully

message
string
Example:

"Chatbot Profile Picture uploaded successfully."

I