POST api/triggertypes/select
Retrieves a list of trigger types that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter trigger types by.
TriggerTypesFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| CategoryId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
|
| Name | string |
None. |
|
| CreationDateFrom | date |
None. |
|
| CreationDateTo | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "611709dc-2178-44fa-abcc-c49756da8c97",
"CreatorUserId": "edf01d43-2100-4ce0-9e90-6f7d9b437561",
"CategoryId": "f3cd00da-81cb-4243-b4da-5dae323933a1",
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T00:45:22.0815549+00:00",
"CreationDateTo": "2026-01-10T00:45:22.0815549+00:00"
}
application/xml, text/xml
Sample:
<TriggerTypesFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models.FilterCriteria"> <CategoryId>f3cd00da-81cb-4243-b4da-5dae323933a1</CategoryId> <CreationDateFrom>2026-01-10T00:45:22.0815549+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T00:45:22.0815549+00:00</CreationDateTo> <CreatorUserId>edf01d43-2100-4ce0-9e90-6f7d9b437561</CreatorUserId> <Id>611709dc-2178-44fa-abcc-c49756da8c97</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> </TriggerTypesFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.