POST api/moduleSettings/select
Retrieves a list of module settings that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter module settings by.
ModuleSettingsFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserJourneyId | globally unique identifier |
None. |
|
| ServiceType | ModuleSettingServiceTypeDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"TenantId": "bea383d0-0ef3-417f-8467-34933880c991",
"UserJourneyId": "202ba4aa-7be9-4c3d-9d10-70482cf460ba",
"ServiceType": 0
}
application/xml, text/xml
Sample:
<ModuleSettingsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models.FilterCriteria"> <Name>sample string 1</Name> <ServiceType>None</ServiceType> <TenantId>bea383d0-0ef3-417f-8467-34933880c991</TenantId> <UserJourneyId>202ba4aa-7be9-4c3d-9d10-70482cf460ba</UserJourneyId> </ModuleSettingsFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of 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": "a2b4c8ff-fbcc-465c-9a79-8de2c8a040f8",
"Name": "sample string 2",
"Url": "sample string 3",
"DisplayName": "sample string 4",
"ServiceType": 0,
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"TenantId": "6f544594-7dd6-4daf-aab4-4a27461491d2",
"UserJourneyId": "14307046-6d42-47f1-bec9-93c71e19670e",
"Bypassable": true,
"DefaultValue": "sample string 9",
"SortIndex": 10,
"ModuleSettingProperties": [
{
"Id": "cd3fab27-d4c7-48a6-ab69-71fe471ab91e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"ModuleSettingId": "59f4ef23-e8bc-460b-b960-82526d83926a"
},
{
"Id": "cd3fab27-d4c7-48a6-ab69-71fe471ab91e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"ModuleSettingId": "59f4ef23-e8bc-460b-b960-82526d83926a"
}
]
},
{
"Id": "a2b4c8ff-fbcc-465c-9a79-8de2c8a040f8",
"Name": "sample string 2",
"Url": "sample string 3",
"DisplayName": "sample string 4",
"ServiceType": 0,
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"TenantId": "6f544594-7dd6-4daf-aab4-4a27461491d2",
"UserJourneyId": "14307046-6d42-47f1-bec9-93c71e19670e",
"Bypassable": true,
"DefaultValue": "sample string 9",
"SortIndex": 10,
"ModuleSettingProperties": [
{
"Id": "cd3fab27-d4c7-48a6-ab69-71fe471ab91e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"ModuleSettingId": "59f4ef23-e8bc-460b-b960-82526d83926a"
},
{
"Id": "cd3fab27-d4c7-48a6-ab69-71fe471ab91e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:45:56.869994+00:00",
"ModuleSettingId": "59f4ef23-e8bc-460b-b960-82526d83926a"
}
]
}
]
application/xml, text/xml
Sample:
<ArrayOfModuleSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
<ModuleSettingDto>
<Bypassable>true</Bypassable>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<DefaultValue>sample string 9</DefaultValue>
<DisplayName>sample string 4</DisplayName>
<Id>a2b4c8ff-fbcc-465c-9a79-8de2c8a040f8</Id>
<ModuleSettingProperties>
<ModuleSettingPropertyDto>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<Id>cd3fab27-d4c7-48a6-ab69-71fe471ab91e</Id>
<ModuleSettingId>59f4ef23-e8bc-460b-b960-82526d83926a</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
<ModuleSettingPropertyDto>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<Id>cd3fab27-d4c7-48a6-ab69-71fe471ab91e</Id>
<ModuleSettingId>59f4ef23-e8bc-460b-b960-82526d83926a</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>6f544594-7dd6-4daf-aab4-4a27461491d2</TenantId>
<Url>sample string 3</Url>
<UserJourneyId>14307046-6d42-47f1-bec9-93c71e19670e</UserJourneyId>
</ModuleSettingDto>
<ModuleSettingDto>
<Bypassable>true</Bypassable>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<DefaultValue>sample string 9</DefaultValue>
<DisplayName>sample string 4</DisplayName>
<Id>a2b4c8ff-fbcc-465c-9a79-8de2c8a040f8</Id>
<ModuleSettingProperties>
<ModuleSettingPropertyDto>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<Id>cd3fab27-d4c7-48a6-ab69-71fe471ab91e</Id>
<ModuleSettingId>59f4ef23-e8bc-460b-b960-82526d83926a</ModuleSettingId>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</ModuleSettingPropertyDto>
<ModuleSettingPropertyDto>
<CreationDate>2025-12-06T04:45:56.869994+00:00</CreationDate>
<Id>cd3fab27-d4c7-48a6-ab69-71fe471ab91e</Id>
<ModuleSettingId>59f4ef23-e8bc-460b-b960-82526d83926a</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>6f544594-7dd6-4daf-aab4-4a27461491d2</TenantId>
<Url>sample string 3</Url>
<UserJourneyId>14307046-6d42-47f1-bec9-93c71e19670e</UserJourneyId>
</ModuleSettingDto>
</ArrayOfModuleSettingDto>