Skip to content

Update application settings

PUT
/api/v1/settings
curl --request PUT \
--url http://127.0.0.1:58259/api/v1/settings \
--header 'Content-Type: application/json' \
--data '[ { "name": "example", "value": "example" } ]'

Update one or more application settings.

Media type application/json

List of settings to update

Array<object>
object
name
string
value
Example generated
[
{
"name": "example",
"value": "example"
}
]

Settings updated successfully

Invalid request