POST
/
api
/
aibot
/
data-source
/
delete
curl --request POST \
  --url https://app.livechatai.com/api/aibot/data-source/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "chatbotId": "c****************1cx4",
  "source": "WEBSITE",
  "id": "d****************2ef5",
  "ids": [
    "d****************2ef5",
    "e****************3fg6"
  ]
}'

Authorizations

Authorization
string
header
required

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

Body

application/json
Data-source deletion details
chatbotId
string
required

Unique identifier of the chatbot

Example:

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

source
string
required

Type of data source to delete (WEBSITE | TEXT | QA)

Example:

"WEBSITE"

id
string
required

Unique identifier of the data-source item to delete

Example:

"d****************2ef5"

ids
string[]

Array of unique identifiers for bulk deletion

Example:
[
  "d****************2ef5",
  "e****************3fg6"
]

Response

200
_mintlify/placeholder

Data-source deleted successfully