Skip to main content
POST
/
postprocess
/
settings
update post-processing settings
curl --request POST \
  --url http://localhost:3917/postprocess/settings \
  --header 'Content-Type: application/json' \
  --data '
{
  "bloom_enabled": true,
  "bloom_threshold": 123,
  "contrast": 123,
  "exposure": 123,
  "fxaa_enabled": true,
  "saturation": 123,
  "ssao_enabled": true,
  "ssao_intensity": 123,
  "ssao_radius": 123,
  "temperature": 123
}
'
{
  "bloom_enabled": true,
  "bloom_threshold": 1,
  "contrast": 1,
  "exposure": 1,
  "fxaa_enabled": true,
  "ok": true,
  "saturation": 1,
  "ssao_enabled": true,
  "ssao_intensity": 1,
  "ssao_radius": 0.5,
  "temperature": 0
}

Body

application/json
bloom_enabled
boolean | null
bloom_threshold
number<float> | null
contrast
number<float> | null
exposure
number<float> | null
fxaa_enabled
boolean | null
saturation
number<float> | null
ssao_enabled
boolean | null
ssao_intensity
number<float> | null
ssao_radius
number<float> | null
temperature
number<float> | null

Response

200 - application/json

Settings updated (resource created if absent); only provided fields change. Echoes the full updated settings, same shape as GET.