Headers

  • Specify effective organization_id for Admin and Group Organization Admins. This is a global header for all endpoints only taken into consideration when it makes sense (it won't be used in Auth, for example)

Query parameters

application/json

Body

  • name string

    The unique name of the setting

  • values object

    Values of the setting per each level. Not all levels need to be set

    Hide values attributes Show values attributes object

Responses

PUT /api/settings
curl \
 -X PUT http://localhost:8080/api/settings \
 -H "Content-Type: application/json" \
 -d '[{"name":"string","values":{"key":{}}}]'
Request examples
# Headers

# Payload
[
  {
    "name": "string",
    "values": {
      "key": {}
    }
  }
]