POST api/triggertypes/select/{pageNumber}/{pageSize}
Retrieves a paged list of trigger types that match the given criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber |
The page number to retrieve. |
integer |
Required |
| pageSize |
The number of records per page. |
integer |
Required |
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": "d9d39b78-1d66-4194-9572-3f06ac709442",
"CreatorUserId": "63e891ee-5c86-4e07-8a15-212d73a64af7",
"CategoryId": "ae9dd6c0-2d5e-4193-9888-53b33547492d",
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T18:54:07.7974011+00:00",
"CreationDateTo": "2026-01-10T18:54:07.7974011+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>ae9dd6c0-2d5e-4193-9888-53b33547492d</CategoryId> <CreationDateFrom>2026-01-10T18:54:07.7974011+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T18:54:07.7974011+00:00</CreationDateTo> <CreatorUserId>63e891ee-5c86-4e07-8a15-212d73a64af7</CreatorUserId> <Id>d9d39b78-1d66-4194-9572-3f06ac709442</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.