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": "b8a12a20-0a99-4c27-86fd-27aaebe5bf4a",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:46:51.3708983+00:00",
"DataType": 0,
"TenantId": "2e7c7839-6df9-4573-ba5c-5e815963d802"
}
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-06T04:46:51.3708983+00:00</CreationDate> <DataType>Bool</DataType> <Id>b8a12a20-0a99-4c27-86fd-27aaebe5bf4a</Id> <Name>sample string 2</Name> <TenantId>2e7c7839-6df9-4573-ba5c-5e815963d802</TenantId> <Value>sample string 3</Value> </SettingDto>