curl --request POST \
--url https://demo.enneo.ai/api/mind/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"setting1": "some-password",
"setting2": 12,
"setting3": {
"setting-json-prop-1": "value1",
"setting-json-prop-2": "value2"
}
}
'{
"success": true
}Update multiple settings in a single request.
Special setting formats:
_tag[{id}].{property} format (e.g., _tag[123].name, _tag[456].visibility)curl --request POST \
--url https://demo.enneo.ai/api/mind/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"setting1": "some-password",
"setting2": 12,
"setting3": {
"setting-json-prop-1": "value1",
"setting-json-prop-2": "value2"
}
}
'{
"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
A key-value object with the new settings. Every setting needs to have the unique setting name as key, and the setting value as value.
Successful operation
Data format of Enneo success messages
Operation was successful
true