POST api/triggers/select
Retrieves a list of triggers that match the given criteria.
Request Information
URI Parameters
None.
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": "e0410e91-4833-4c3c-a93b-b30851a9d33a",
"CreatorUserId": "103cde3d-8ff5-450d-ada4-49d74abaf59e",
"CategoryId": "4eb5215e-133a-4d14-b011-14389dd6994a",
"TriggerTypeId": "6d1e8083-943b-4249-a256-33524de9e716",
"TenantId": "0b84f96b-3c1a-4908-88b9-cf0cc69bd783",
"Status": 0,
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T18:54:06.0127899+00:00",
"CreationDateTo": "2026-01-10T18:54:06.0127899+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>4eb5215e-133a-4d14-b011-14389dd6994a</CategoryId> <CreationDateFrom>2026-01-10T18:54:06.0127899+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T18:54:06.0127899+00:00</CreationDateTo> <CreatorUserId>103cde3d-8ff5-450d-ada4-49d74abaf59e</CreatorUserId> <Id>e0410e91-4833-4c3c-a93b-b30851a9d33a</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> <Status>Pending</Status> <TenantId>0b84f96b-3c1a-4908-88b9-cf0cc69bd783</TenantId> <TriggerTypeId>6d1e8083-943b-4249-a256-33524de9e716</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.