GET api/features
Retrieves a list of features.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
FeatureDto| Name | Description | Type | Additional 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": "8826f1c7-febc-4127-a692-906198fa1285",
"Name": "sample string 2",
"Enabled": true,
"CreationDate": "2026-01-11T20:54:52.0557573+00:00",
"TenantId": "614bc4bb-b0c3-467e-b418-097df16b11ad",
"SecurityGroupId": "86ed36e4-ee61-406a-9650-7660b7e098fa",
"FeatureProperties": [
{
"Id": "2b3a2f90-0541-4de7-8944-94bec5561122",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:54:52.0557573+00:00",
"FeatureId": "3ff82282-c79b-4dce-aa94-6621701eb66e"
},
{
"Id": "2b3a2f90-0541-4de7-8944-94bec5561122",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:54:52.0557573+00:00",
"FeatureId": "3ff82282-c79b-4dce-aa94-6621701eb66e"
}
]
}
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>2026-01-11T20:54:52.0557573+00:00</CreationDate>
<Enabled>true</Enabled>
<FeatureProperties>
<FeaturePropertyDto>
<CreationDate>2026-01-11T20:54:52.0557573+00:00</CreationDate>
<FeatureId>3ff82282-c79b-4dce-aa94-6621701eb66e</FeatureId>
<Id>2b3a2f90-0541-4de7-8944-94bec5561122</Id>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</FeaturePropertyDto>
<FeaturePropertyDto>
<CreationDate>2026-01-11T20:54:52.0557573+00:00</CreationDate>
<FeatureId>3ff82282-c79b-4dce-aa94-6621701eb66e</FeatureId>
<Id>2b3a2f90-0541-4de7-8944-94bec5561122</Id>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</FeaturePropertyDto>
</FeatureProperties>
<Id>8826f1c7-febc-4127-a692-906198fa1285</Id>
<Name>sample string 2</Name>
<SecurityGroupId>86ed36e4-ee61-406a-9650-7660b7e098fa</SecurityGroupId>
<TenantId>614bc4bb-b0c3-467e-b418-097df16b11ad</TenantId>
</FeatureDto>