POST api/triggers/select/{pageNumber}/{pageSize}
Retrieves a paged list of triggers 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 triggers by.
TriggersFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| CategoryId | globally unique identifier |
None. |
|
| TriggerTypeId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Status | TriggerStatusDto |
None. |
|
| IsDeleted | boolean |
None. |
|
| Name | string |
None. |
|
| CreationDateFrom | date |
None. |
|
| CreationDateTo | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "216e12c3-330b-4ae6-9cd2-6e4d3f3f8ff3",
"CreatorUserId": "ed5669a6-bc6c-4d20-9144-28dddc908e95",
"CategoryId": "f752dc2a-43c9-4759-9a76-4d15027784c5",
"TriggerTypeId": "dc9b4265-a110-428b-9a2e-fbf593f75f95",
"TenantId": "adbb673e-3ba2-41f1-b261-fc9a53c25068",
"Status": 0,
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2025-12-11T20:15:05.7600777+00:00",
"CreationDateTo": "2025-12-11T20:15:05.7600777+00:00"
}
application/xml, text/xml
Sample:
<TriggersFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models.FilterCriteria"> <CategoryId>f752dc2a-43c9-4759-9a76-4d15027784c5</CategoryId> <CreationDateFrom>2025-12-11T20:15:05.7600777+00:00</CreationDateFrom> <CreationDateTo>2025-12-11T20:15:05.7600777+00:00</CreationDateTo> <CreatorUserId>ed5669a6-bc6c-4d20-9144-28dddc908e95</CreatorUserId> <Id>216e12c3-330b-4ae6-9cd2-6e4d3f3f8ff3</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> <Status>Pending</Status> <TenantId>adbb673e-3ba2-41f1-b261-fc9a53c25068</TenantId> <TriggerTypeId>dc9b4265-a110-428b-9a2e-fbf593f75f95</TriggerTypeId> </TriggersFilterCriteriaDto>
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.