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": "2abbda20-92c8-49d1-ac25-2ab07a9b52ba",
"CreatorUserId": "5bd8a1d6-2c89-4229-b472-fb357e1e6dc4",
"CategoryId": "fc5caccb-07c3-43ce-8d5a-7fb5a485dd67",
"TriggerTypeId": "3ba3435c-8d8e-4cda-8b8f-bad4565b0254",
"TenantId": "5291d9ad-6188-4c4d-a12d-1bfe6cd00d5f",
"Status": 0,
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T18:54:55.1385646+00:00",
"CreationDateTo": "2026-01-10T18:54:55.1385646+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>fc5caccb-07c3-43ce-8d5a-7fb5a485dd67</CategoryId> <CreationDateFrom>2026-01-10T18:54:55.1385646+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T18:54:55.1385646+00:00</CreationDateTo> <CreatorUserId>5bd8a1d6-2c89-4229-b472-fb357e1e6dc4</CreatorUserId> <Id>2abbda20-92c8-49d1-ac25-2ab07a9b52ba</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> <Status>Pending</Status> <TenantId>5291d9ad-6188-4c4d-a12d-1bfe6cd00d5f</TenantId> <TriggerTypeId>3ba3435c-8d8e-4cda-8b8f-bad4565b0254</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.