curl --request POST \
--url https://demo.enneo.ai/api/mind/settings \
--header 'Content-Type: application/json' \
--data '{
"setting1": "some-password",
"setting2": 12,
"setting3": {
"setting-json-prop-1": "value1",
"setting-json-prop-2": "value2"
}
}'
{
"success": true
}
Cookie-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
curl --request POST \
--url https://demo.enneo.ai/api/mind/settings \
--header 'Content-Type: application/json' \
--data '{
"setting1": "some-password",
"setting2": 12,
"setting3": {
"setting-json-prop-1": "value1",
"setting-json-prop-2": "value2"
}
}'
{
"success": true
}