Update Enterprise Settings Run in API Explorer
Ask AI
Update all enterprise settings in one request. The request should contain an array of settings with their keys, values, labels, and help texts. The keys must match the existing settings in the database. This endpoint allows for bulk updating of settings, making it efficient for managing multiple settings at once.
PUT
/api/v1/enterprise/settings
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/enterprise/settings' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"settings":[{"key":"some_setting_key","label":"A Setting","value":"#ffffff","help_text":"This is some help text for the setting."}]}'
Request examples
{
"settings": [
{
"key": "some_setting_key",
"label": "A Setting",
"value": "#ffffff",
"help_text": "This is some help text for the setting."
}
]
}