POST api/settings/select
Retrieves a list of settings that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter settings by.
SettingsFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| DataType | SettingDataTypeDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"TenantId": "4c09aa45-e6c5-4bfa-a601-e73eb2b202fa",
"DataType": 0
}
application/xml, text/xml
Sample:
<SettingsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models.FilterCriteria"> <DataType>Bool</DataType> <Name>sample string 1</Name> <TenantId>4c09aa45-e6c5-4bfa-a601-e73eb2b202fa</TenantId> </SettingsFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of SettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required |
|
| Value | string |
Required |
|
| CreationDate | date |
None. |
|
| DataType | SettingDataTypeDto |
None. |
|
| TenantId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "1d3df8a1-2d2e-49b7-866b-7f609e502fd5",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:20:23.3265704+00:00",
"DataType": 0,
"TenantId": "2d37f2b9-4a41-4959-a815-bdefc2881110"
},
{
"Id": "1d3df8a1-2d2e-49b7-866b-7f609e502fd5",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:20:23.3265704+00:00",
"DataType": 0,
"TenantId": "2d37f2b9-4a41-4959-a815-bdefc2881110"
}
]
application/xml, text/xml
Sample:
<ArrayOfSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
<SettingDto>
<CreationDate>2026-01-11T20:20:23.3265704+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>1d3df8a1-2d2e-49b7-866b-7f609e502fd5</Id>
<Name>sample string 2</Name>
<TenantId>2d37f2b9-4a41-4959-a815-bdefc2881110</TenantId>
<Value>sample string 3</Value>
</SettingDto>
<SettingDto>
<CreationDate>2026-01-11T20:20:23.3265704+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>1d3df8a1-2d2e-49b7-866b-7f609e502fd5</Id>
<Name>sample string 2</Name>
<TenantId>2d37f2b9-4a41-4959-a815-bdefc2881110</TenantId>
<Value>sample string 3</Value>
</SettingDto>
</ArrayOfSettingDto>