GET api/FeatureToggle/GetFeatureToggleByCode?code={code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

Body Parameters

None.

Response Information

Resource Description

FeatureToggleDto
NameDescriptionTypeAdditional 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": "d81ef607-5a0c-4e33-92b2-23614d53c87d",
  "Code": "sample string 2",
  "Active": true,
  "Description": "sample string 4",
  "DeletedDate": "2026-03-29T20:35:20.5395159+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>2026-03-29T20:35:20.5395159+00:00</DeletedDate>
  <Description>sample string 4</Description>
  <Id>d81ef607-5a0c-4e33-92b2-23614d53c87d</Id>
</FeatureToggleDto>