GET api/FeatureToggle/GetFeatureToggles
Returns all Feature Toggles
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of FeatureToggleDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Code | string |
Required String length: inclusive between 0 and 250 |
|
| Active | boolean |
Required |
|
| Description | string |
Required String length: inclusive between 0 and 250 |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "e1b6ed9a-6481-4b9b-9e3e-c0cf3c49b744",
"Code": "sample string 2",
"Active": true,
"Description": "sample string 4",
"DeletedDate": "2025-10-29T21:20:36.7649012+00:00"
},
{
"Id": "e1b6ed9a-6481-4b9b-9e3e-c0cf3c49b744",
"Code": "sample string 2",
"Active": true,
"Description": "sample string 4",
"DeletedDate": "2025-10-29T21:20:36.7649012+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeatureToggleDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Models.RepoDtos">
<FeatureToggleDto>
<Active>true</Active>
<Code>sample string 2</Code>
<DeletedDate>2025-10-29T21:20:36.7649012+00:00</DeletedDate>
<Description>sample string 4</Description>
<Id>e1b6ed9a-6481-4b9b-9e3e-c0cf3c49b744</Id>
</FeatureToggleDto>
<FeatureToggleDto>
<Active>true</Active>
<Code>sample string 2</Code>
<DeletedDate>2025-10-29T21:20:36.7649012+00:00</DeletedDate>
<Description>sample string 4</Description>
<Id>e1b6ed9a-6481-4b9b-9e3e-c0cf3c49b744</Id>
</FeatureToggleDto>
</ArrayOfFeatureToggleDto>