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": "5f20822f-74c7-4d75-8e5f-0147da924d00",
"CreatorUserId": "54566d22-d2c7-4c32-a775-b26eadaf4a9a",
"CategoryId": "ed914475-500b-4488-85ca-5d6ba94eaef5",
"TriggerTypeId": "e531fe34-c1e0-40fd-8487-d32273677d3b",
"TenantId": "299f30e6-7af0-4ffa-9c8b-ae5de7a9526f",
"Status": 0,
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T10:24:25.5593751+00:00",
"CreationDateTo": "2026-01-10T10:24:25.5593751+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>ed914475-500b-4488-85ca-5d6ba94eaef5</CategoryId> <CreationDateFrom>2026-01-10T10:24:25.5593751+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T10:24:25.5593751+00:00</CreationDateTo> <CreatorUserId>54566d22-d2c7-4c32-a775-b26eadaf4a9a</CreatorUserId> <Id>5f20822f-74c7-4d75-8e5f-0147da924d00</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> <Status>Pending</Status> <TenantId>299f30e6-7af0-4ffa-9c8b-ae5de7a9526f</TenantId> <TriggerTypeId>e531fe34-c1e0-40fd-8487-d32273677d3b</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.