List Config Store Option

GET /platform/configuration/store

List all existing Config Store Option.

Responses

  • List of existing Config Store Option

    Hide response attribute Show response attribute object
    • values array[object] Required

      List of Config Store Options

      Hide values attributes Show values attributes object
      • name string Required

        Name of this Config Store Option

      • value string Required

        Value of this Config Store Option

      • changed boolean Required

        Whether or not this Config Store Option has changed

GET /platform/configuration/store
curl \
 -X GET https://{{hostname}}/api/v1/platform/configuration/store
Response examples (200)
{
  "values": [
    {
      "name": "string",
      "value": "string",
      "changed": true
    }
  ]
}