IOM - Configuration API (1.0.0)

Download OpenAPI specification:

IOM - Configuration API

featureToggles

Configurations - FeatureToggles

getFeatureToggles

Retrieve all feature toggles

Responses

Response samples

Content type
application/json
[
  • {
    }
]

getFeatureToggle

Retrieve the feature toggle with the given name

Responses

Response samples

Content type
application/json
{
  • "name": "string",
  • "enabled": true,
  • "lastModified": 0
}

setFeatureToggle

Update the feature toggle with the given name

Request Body schema: application/json
enabled
boolean

Responses

Request samples

Content type
application/json
{
  • "enabled": true
}

Response samples

Content type
application/json
{
  • "name": "string",
  • "enabled": true,
  • "lastModified": 0
}