GET api/settings/tenant
Retrieves a list of settings for the tenant of the user making the request.
Request Information
URI Parameters
None.
Body Parameters
None.
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": "325d60cf-9263-47a9-a463-a67d6d9250ad",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:25:52.8619711+00:00",
"DataType": 0,
"TenantId": "c9224d64-bafb-44db-a866-b31d7ca8e8c4"
},
{
"Id": "325d60cf-9263-47a9-a463-a67d6d9250ad",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:25:52.8619711+00:00",
"DataType": 0,
"TenantId": "c9224d64-bafb-44db-a866-b31d7ca8e8c4"
}
]
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:25:52.8619711+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>325d60cf-9263-47a9-a463-a67d6d9250ad</Id>
<Name>sample string 2</Name>
<TenantId>c9224d64-bafb-44db-a866-b31d7ca8e8c4</TenantId>
<Value>sample string 3</Value>
</SettingDto>
<SettingDto>
<CreationDate>2026-01-11T20:25:52.8619711+00:00</CreationDate>
<DataType>Bool</DataType>
<Id>325d60cf-9263-47a9-a463-a67d6d9250ad</Id>
<Name>sample string 2</Name>
<TenantId>c9224d64-bafb-44db-a866-b31d7ca8e8c4</TenantId>
<Value>sample string 3</Value>
</SettingDto>
</ArrayOfSettingDto>