GET api/FeatureToggle/GetFeatureToggleById?featureToggleId={featureToggleId}
Returns a Feature Toggle by Id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
featureToggleId |
Id of the Feature Toggle. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
FeatureToggleDtoName | 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": "d0dfaa84-01fe-49b2-9d17-b3b92b0ef33f", "Code": "sample string 2", "Active": true, "Description": "sample string 4", "DeletedDate": "2024-11-21T07:08:37.7780182+00:00" }
application/xml, text/xml
Sample:
<FeatureToggleDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Models.RepoDtos"> <Active>true</Active> <Code>sample string 2</Code> <DeletedDate>2024-11-21T07:08:37.7780182+00:00</DeletedDate> <Description>sample string 4</Description> <Id>d0dfaa84-01fe-49b2-9d17-b3b92b0ef33f</Id> </FeatureToggleDto>