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": "b08c51f5-4770-4032-b8f7-bc9772f73b27",
"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>b08c51f5-4770-4032-b8f7-bc9772f73b27</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": "19ba7995-8bc2-4153-978d-3e79ed33e2af",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T03:10:28.2031761+00:00",
"DataType": 0,
"TenantId": "fa575ad6-3ecb-4e43-a8e5-3677f49c0dea"
},
{
"Id": "19ba7995-8bc2-4153-978d-3e79ed33e2af",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T03:10:28.2031761+00:00",
"DataType": 0,
"TenantId": "fa575ad6-3ecb-4e43-a8e5-3677f49c0dea"
}
]
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>2025-12-06T03:10:28.2031761+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>19ba7995-8bc2-4153-978d-3e79ed33e2af</Id>
<Name>sample string 2</Name>
<TenantId>fa575ad6-3ecb-4e43-a8e5-3677f49c0dea</TenantId>
<Value>sample string 3</Value>
</SettingDto>
<SettingDto>
<CreationDate>2025-12-06T03:10:28.2031761+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>19ba7995-8bc2-4153-978d-3e79ed33e2af</Id>
<Name>sample string 2</Name>
<TenantId>fa575ad6-3ecb-4e43-a8e5-3677f49c0dea</TenantId>
<Value>sample string 3</Value>
</SettingDto>
</ArrayOfSettingDto>