POST api/featuretoggling/enabled

Check the enabled state of multiple features in a single call, so callers can request every feature they need in one request rather than one request per feature. Processes this feature toggling API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The feature names to check.

Collection of string

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

Response Information

Resource Description

A map of feature name to its enabled state.

Dictionary of string [key] and boolean [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": true,
  "sample string 3": true
}