curl --request PUT \
--url https://demo.enneo.ai/api/mind/settings/{name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"toleranceGas": 800,
"toleranceElectricity": 300
}
'{
"success": true
}Update a single setting value.
Special setting formats:
_tag[{id}].{property} format (e.g., _tag[123].name, _tag[123].visibility)curl --request PUT \
--url https://demo.enneo.ai/api/mind/settings/{name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"toleranceGas": 800,
"toleranceElectricity": 300
}
'{
"success": true
}JWT-based authentication
The name of the setting to update
The body is of type object.
Successful operation
Data format of Enneo success messages
Operation was successful
true