Syntax
api.deleteKnowledgeSource(params)
Description
Deletes a Knowledge Source and the relative Knowledge Chunks.
Parameters:
params: DeleteKnowledgeSourceParams — configuration object containing the source ID. The object contains the following parameters:
| Parameter | Type | Description |
|---|
knowledgeSourceId | string | The ID of the Knowledge Source. |
Returns: Promise<{}> — a promise that resolves to an empty object when the deletion is complete.
Example
await api.deleteKnowledgeSource({
knowledgeSourceId: "ks_abc123def456"
});
console.log("Knowledge source deleted successfully");
Last modified on June 10, 2026