GET api/features

Retrieves a list of features.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

FeatureDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

Required

Enabled

boolean

None.

CreationDate

date

None.

TenantId

globally unique identifier

None.

SecurityGroupId

globally unique identifier

None.

FeatureProperties

Collection of FeaturePropertyDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "00b945f5-991d-4e45-ac93-4912d2ec43f1",
  "Name": "sample string 2",
  "Enabled": true,
  "CreationDate": "2025-12-06T03:10:26.2128359+00:00",
  "TenantId": "6d8e37d3-1917-4f4d-ae88-76905fc25a91",
  "SecurityGroupId": "57ab468b-e1af-4b95-bcc5-19e0ca332203",
  "FeatureProperties": [
    {
      "Id": "193bf4ae-cad6-467c-9f14-fd52c2e4c06c",
      "Name": "sample string 2",
      "Value": "sample string 3",
      "CreationDate": "2025-12-06T03:10:26.2128359+00:00",
      "FeatureId": "c9c82332-6fc3-45d2-ba6d-ed806cbbb362"
    },
    {
      "Id": "193bf4ae-cad6-467c-9f14-fd52c2e4c06c",
      "Name": "sample string 2",
      "Value": "sample string 3",
      "CreationDate": "2025-12-06T03:10:26.2128359+00:00",
      "FeatureId": "c9c82332-6fc3-45d2-ba6d-ed806cbbb362"
    }
  ]
}

application/xml, text/xml

Sample:
<FeatureDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
  <CreationDate>2025-12-06T03:10:26.2128359+00:00</CreationDate>
  <Enabled>true</Enabled>
  <FeatureProperties>
    <FeaturePropertyDto>
      <CreationDate>2025-12-06T03:10:26.2128359+00:00</CreationDate>
      <FeatureId>c9c82332-6fc3-45d2-ba6d-ed806cbbb362</FeatureId>
      <Id>193bf4ae-cad6-467c-9f14-fd52c2e4c06c</Id>
      <Name>sample string 2</Name>
      <Value>sample string 3</Value>
    </FeaturePropertyDto>
    <FeaturePropertyDto>
      <CreationDate>2025-12-06T03:10:26.2128359+00:00</CreationDate>
      <FeatureId>c9c82332-6fc3-45d2-ba6d-ed806cbbb362</FeatureId>
      <Id>193bf4ae-cad6-467c-9f14-fd52c2e4c06c</Id>
      <Name>sample string 2</Name>
      <Value>sample string 3</Value>
    </FeaturePropertyDto>
  </FeatureProperties>
  <Id>00b945f5-991d-4e45-ac93-4912d2ec43f1</Id>
  <Name>sample string 2</Name>
  <SecurityGroupId>57ab468b-e1af-4b95-bcc5-19e0ca332203</SecurityGroupId>
  <TenantId>6d8e37d3-1917-4f4d-ae88-76905fc25a91</TenantId>
</FeatureDto>