PUT
/
api
/
aibot
/
data-source
/
qa
curl --request PUT \
  --url https://app.livechatai.com/api/aibot/data-source/qa \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "q****************9ab2",
  "question": "What is the largest planet in our solar system?",
  "answer": "The largest planet in our solar system is Jupiter.",
  "chatbotId": "c****************1cx4"
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Q&A data-source update details
id
string
required

Unique identifier of the Q&A data-source

Example:

"q****************9ab2"

question
string
required

Updated question for the Q&A data-source

Example:

"What is the largest planet in our solar system?"

answer
string
required

Updated answer for the Q&A data-source

Example:

"The largest planet in our solar system is Jupiter."

chatbotId
string
required

Unique identifier of the chatbot

Example:

"c****************1cx4"

Response

200
_mintlify/placeholder

Q&A data-source updated successfully