GET api/settings
Retrieves a list of settings.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
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": "309f4e5a-5942-4ebc-b912-285fc9b8b4d6",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T03:11:22.1266745+00:00",
"DataType": 0,
"TenantId": "c27ece22-4e5b-4ff9-ab7e-5ecd5f9d67f9"
}
application/xml, text/xml
Sample:
<SettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models"> <CreationDate>2025-12-06T03:11:22.1266745+00:00</CreationDate> <DataType>Bool</DataType> <Id>309f4e5a-5942-4ebc-b912-285fc9b8b4d6</Id> <Name>sample string 2</Name> <TenantId>c27ece22-4e5b-4ff9-ab7e-5ecd5f9d67f9</TenantId> <Value>sample string 3</Value> </SettingDto>