Skip to main content
DELETE
/
organization
/
rag
/
sources
Delete multiple AI sources
curl --request DELETE \
  --url https://api.getfernand.com/organization/rag/sources \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "uuids": [
    "a1b2c3d4e5f6g7h8i9j0",
    "b2c3d4e5f6g7h8i9j0k1"
  ]
}
'
{}
Permanently removes multiple sources from the AI store. The deletion is processed asynchronously.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Body

application/json
uuids
string[]
required

Array of source UUIDs to delete.

Example:
[
"a1b2c3d4e5f6g7h8i9j0",
"b2c3d4e5f6g7h8i9j0k1"
]

Response

200 - application/json

Sources queued for deletion.

The response is of type object.