Set the value of multiple options

POST /options

Sets the value of multiple options

Query parameters

  • Comman-separated options keys to filter in the response

  • Comman-separated options fields to filter in the response

application/json

Body

Option item to update

Responses

  • 201

    options updated

  • 400

    invalid input, object invalid

POST /options
curl \
 -X POST https://virtserver.swaggerhub.com/Fernleaf-Systems/ShieldSecurity/1.0.0/options \
 -H "Content-Type: application/json" \
 -d '{"options":[{"key":"enable_tracking","value":"Y","module":"hack_guard"}]}'
Request example
{
  "options": [
    {
      "key": "enable_tracking",
      "value": "Y",
      "module": "hack_guard"
    }
  ]
}