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": "df69276b-a0c1-4adc-9d02-81774569f866",
"CreatorUserId": "8b1c8447-9405-4a7d-a322-0eae5cf49c05",
"CategoryId": "4323ed0e-51a3-4f38-962b-b00052fd0ace",
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T10:21:54.9130143+00:00",
"CreationDateTo": "2026-01-10T10:21:54.9130143+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>4323ed0e-51a3-4f38-962b-b00052fd0ace</CategoryId> <CreationDateFrom>2026-01-10T10:21:54.9130143+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T10:21:54.9130143+00:00</CreationDateTo> <CreatorUserId>8b1c8447-9405-4a7d-a322-0eae5cf49c05</CreatorUserId> <Id>df69276b-a0c1-4adc-9d02-81774569f866</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.