# Save settings for an application Updates the application specified by its UUID with the provided configuration settings. Returns the updated application details as a ShowResponse wrapping an AppDTO. Endpoint: PUT /api/v2/apps/{uuid}/settings Version: 1.0 Security: BearerAuthentication ## Path parameters: - `uuid` (string, required) UUID of the application to save settings for ## Request fields (application/json): - `settings` (array) A map of configuration settings. The keys are strings representing the setting names, and the values represent the setting values, which can be different types. Example: {"theme":"dark","notifications":true} - `settings.name` (string) - `settings.label` (string) - `settings.type` (string) - `settings.required` (boolean) - `settings.helpText` (string) - `settings.options` (array) - `settings.defaultValue` (any) - `settings.hidden` (boolean) - `settings.sourceFieldKey` (string) - `settings.targetFieldKey` (string) - `settings.objectName` (string) - `settings.value` (any)