PUT api/features/{id}
Updates a feature.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the feature to update. |
globally unique identifier |
Required |
Body Parameters
The feature model to update with.
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1e58c407-a799-45ef-8fc3-01368e32fb61",
"Name": "sample string 2",
"Enabled": true,
"CreationDate": "2026-01-11T21:03:19.0071012+00:00",
"TenantId": "41f1c8f7-b8d7-4732-b047-ca3782265f20",
"SecurityGroupId": "a6b86107-4993-4917-8169-daf3a494ffa3",
"FeatureProperties": [
{
"Id": "de3887cc-b556-4653-a03e-014c64a47052",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T21:03:19.0071012+00:00",
"FeatureId": "1527417f-09fc-4b5d-b8ba-23f3398bc6b6"
},
{
"Id": "de3887cc-b556-4653-a03e-014c64a47052",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T21:03:19.0071012+00:00",
"FeatureId": "1527417f-09fc-4b5d-b8ba-23f3398bc6b6"
}
]
}
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-11T21:03:19.0071012+00:00</CreationDate>
<Enabled>true</Enabled>
<FeatureProperties>
<FeaturePropertyDto>
<CreationDate>2026-01-11T21:03:19.0071012+00:00</CreationDate>
<FeatureId>1527417f-09fc-4b5d-b8ba-23f3398bc6b6</FeatureId>
<Id>de3887cc-b556-4653-a03e-014c64a47052</Id>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</FeaturePropertyDto>
<FeaturePropertyDto>
<CreationDate>2026-01-11T21:03:19.0071012+00:00</CreationDate>
<FeatureId>1527417f-09fc-4b5d-b8ba-23f3398bc6b6</FeatureId>
<Id>de3887cc-b556-4653-a03e-014c64a47052</Id>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</FeaturePropertyDto>
</FeatureProperties>
<Id>1e58c407-a799-45ef-8fc3-01368e32fb61</Id>
<Name>sample string 2</Name>
<SecurityGroupId>a6b86107-4993-4917-8169-daf3a494ffa3</SecurityGroupId>
<TenantId>41f1c8f7-b8d7-4732-b047-ca3782265f20</TenantId>
</FeatureDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.