curl --request PATCH \
--url https://demo.enneo.ai/api/mind/knowledgeSource/websiteConnector/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"maxPages": 123,
"includePaths": [
"<string>"
],
"excludePaths": [
"<string>"
],
"addExcludePaths": [
"<string>"
],
"removeExcludePaths": [
"<string>"
],
"scheduleEnabled": true,
"frequency": "daily"
}
'{
"success": true
}Updates a website connector. The excludePaths field has three mutually compatible inputs:
excludePaths — full replace (operator-edit form).addExcludePaths — append to the current excludePaths (set-union, deduped server-side).removeExcludePaths — remove from the current excludePaths (set-difference).excludePaths is mutually exclusive with addExcludePaths/removeExcludePaths —
sending both in the same request returns 422. addExcludePaths and removeExcludePaths
can be combined in one request (add applied first, then remove).
Whenever excludePaths actually changes, Mind diffs old-vs-new and emits
knowledgeSourceChanged events: delete for newly-matching pages (now excluded),
create for newly-unmatching pages (now included). This keeps Cortex’s Weaviate index
in sync immediately rather than waiting for the next periodic resync.
curl --request PATCH \
--url https://demo.enneo.ai/api/mind/knowledgeSource/websiteConnector/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"maxPages": 123,
"includePaths": [
"<string>"
],
"excludePaths": [
"<string>"
],
"addExcludePaths": [
"<string>"
],
"removeExcludePaths": [
"<string>"
],
"scheduleEnabled": true,
"frequency": "daily"
}
'{
"success": true
}Documentation Index
Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt
Use this file to discover all available pages before exploring further.
JWT-based authentication
Full replace of the connector's excludePaths. Mutually exclusive with addExcludePaths/removeExcludePaths.
Paths to append to the current excludePaths (set-union, deduped). Mutually exclusive with excludePaths.
Paths to remove from the current excludePaths (set-difference). Mutually exclusive with excludePaths.
daily, weekly Successful operation
Data format of Enneo success messages
Operation was successful
true