GET api/moduleSettings
Retrieves a list of module settings.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ModuleSettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required |
|
| Url | string |
Required |
|
| DisplayName | string |
Required |
|
| ServiceType | ModuleSettingServiceTypeDto |
None. |
|
| CreationDate | date |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserJourneyId | globally unique identifier |
None. |
|
| Bypassable | boolean |
None. |
|
| DefaultValue | string |
None. |
|
| SortIndex | integer |
None. |
|
| ModuleSettingProperties | Collection of ModuleSettingPropertyDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "d8179d30-857a-4e8b-beb7-3e31a730a849",
"Name": "sample string 2",
"Url": "sample string 3",
"DisplayName": "sample string 4",
"ServiceType": 0,
"CreationDate": "2026-01-11T20:19:10.4438312+00:00",
"TenantId": "01d094b3-2177-4164-8f96-5129bec5b439",
"UserJourneyId": "3c6f93e8-ce22-4c5c-ae53-cbef5d2256de",
"Bypassable": true,
"DefaultValue": "sample string 9",
"SortIndex": 10,
"ModuleSettingProperties": [
{
"Id": "1fb7b85a-eaf6-4c8e-8a03-4bd54298de23",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:19:10.4438312+00:00",
"ModuleSettingId": "59762aa9-16d1-4602-8dbc-e2ecbbea3ea7"
},
{
"Id": "1fb7b85a-eaf6-4c8e-8a03-4bd54298de23",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-11T20:19:10.4438312+00:00",
"ModuleSettingId": "59762aa9-16d1-4602-8dbc-e2ecbbea3ea7"
}
]
}
application/xml, text/xml
Sample:
<ModuleSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
<Bypassable>true</Bypassable>
<CreationDate>2026-01-11T20:19:10.4438312+00:00</CreationDate>
<DefaultValue>sample string 9</DefaultValue>
<DisplayName>sample string 4</DisplayName>
<Id>d8179d30-857a-4e8b-beb7-3e31a730a849</Id>
<ModuleSettingProperties>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:19:10.4438312+00:00</CreationDate>
<Id>1fb7b85a-eaf6-4c8e-8a03-4bd54298de23</Id>
<ModuleSettingId>59762aa9-16d1-4602-8dbc-e2ecbbea3ea7</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
<ModuleSettingPropertyDto>
<CreationDate>2026-01-11T20:19:10.4438312+00:00</CreationDate>
<Id>1fb7b85a-eaf6-4c8e-8a03-4bd54298de23</Id>
<ModuleSettingId>59762aa9-16d1-4602-8dbc-e2ecbbea3ea7</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
</ModuleSettingProperties>
<Name>sample string 2</Name>
<ServiceType>None</ServiceType>
<SortIndex>10</SortIndex>
<TenantId>01d094b3-2177-4164-8f96-5129bec5b439</TenantId>
<Url>sample string 3</Url>
<UserJourneyId>3c6f93e8-ce22-4c5c-ae53-cbef5d2256de</UserJourneyId>
</ModuleSettingDto>