Retrieve entire options list and the current values

GET /options

Get entire set of all configuration options and their respective current values.

Responses

  • 200

    all configuration options & values

    Hide response attributes Show response attributes array[object]
    • key string Required

      Format should match the following pattern: ^[a-z_]$.

    • value string | null | integer | array Required

      One of:

      the value of the option. Use 'null' to reset to default

    • module string

      Format should match the following pattern: ^[a-z_]$.

  • 400

    bad input parameter

GET /options
curl \
 -X GET https://virtserver.swaggerhub.com/Fernleaf-Systems/ShieldSecurity/1.0.0/options
Response examples (200)
[
  {
    "key": "enable_tracking",
    "value": "Y",
    "module": "hack_guard"
  }
]
Response examples (200)
[
  {
    "key": "enable_tracking",
    "value": "Y",
    "module": "hack_guard"
  }
]