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
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
}