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": "9ce2d215-b3fe-4805-98f7-b838975b6821",
"CreatorUserId": "7b551caa-b3ea-471d-9d53-c0d4962c227a",
"CategoryId": "4a4bc5be-e00b-4916-a545-e4da14ffc8df",
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2025-12-11T20:15:00.1330847+00:00",
"CreationDateTo": "2025-12-11T20:15:00.1330847+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>4a4bc5be-e00b-4916-a545-e4da14ffc8df</CategoryId> <CreationDateFrom>2025-12-11T20:15:00.1330847+00:00</CreationDateFrom> <CreationDateTo>2025-12-11T20:15:00.1330847+00:00</CreationDateTo> <CreatorUserId>7b551caa-b3ea-471d-9d53-c0d4962c227a</CreatorUserId> <Id>9ce2d215-b3fe-4805-98f7-b838975b6821</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.