Knowledge Bases
DELETE Delete source
Permanently remove a source and its embedded chunks.
Endpoint
DELETE https://api.strideops.ai/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
| Param | Type | Notes |
|---|---|---|
baseId | uuid | Knowledge base id. |
sourceId | uuid | Source id. |
Response
204 No Content on success. No body.
Example
curl -X DELETE https://api.strideops.ai/v1/bases/kb_8f3e…/sources/src_1a2b… \
-H "Authorization: Bearer $STRIDE_API_KEY"