AI Connect OSAI Connect OS Documentation
DocumentationAPI Reference
Knowledge Bases

DELETE Delete source

Permanently remove a source and its embedded chunks.

Endpoint

DELETE https://api.aiconnectos.com/v1/bases/{baseId}/sources/{sourceId}

Permanently removes the source from the base. All embedded chunks are deleted from source_chunks - voice agents and chat assistants stop retrieving from it immediately.

This deletion is not soft - there is no 30-day grace window. If you might re-add the source later, archive it via the dashboard instead.

Path parameters

ParamTypeNotes
baseIduuidKnowledge base id.
sourceIduuidSource id.

Response

204 No Content on success. No body.

Example

curl -X DELETE https://api.aiconnectos.com/v1/bases/kb_8f3e…/sources/src_1a2b… \
  -H "Authorization: Bearer $STRIDE_API_KEY"

On this page