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": "ae77e37b-3a44-4aa8-9db6-06d03bb38782",
"CreatorUserId": "980512e0-a43f-4553-8ac7-16790c8c7fea",
"CategoryId": "1b1eeac9-f36d-4e13-8d70-d4ac89ce9278",
"TriggerTypeId": "a8862547-231c-49d0-b79f-22aa8357d26c",
"TenantId": "3bb25b95-7bb8-428d-b9f7-0ef5857315d3",
"Status": 0,
"IsDeleted": true,
"Name": "sample string 1",
"CreationDateFrom": "2026-01-10T10:22:00.7266675+00:00",
"CreationDateTo": "2026-01-10T10:22:00.7266675+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>1b1eeac9-f36d-4e13-8d70-d4ac89ce9278</CategoryId> <CreationDateFrom>2026-01-10T10:22:00.7266675+00:00</CreationDateFrom> <CreationDateTo>2026-01-10T10:22:00.7266675+00:00</CreationDateTo> <CreatorUserId>980512e0-a43f-4553-8ac7-16790c8c7fea</CreatorUserId> <Id>ae77e37b-3a44-4aa8-9db6-06d03bb38782</Id> <IsDeleted>true</IsDeleted> <Name>sample string 1</Name> <Status>Pending</Status> <TenantId>3bb25b95-7bb8-428d-b9f7-0ef5857315d3</TenantId> <TriggerTypeId>a8862547-231c-49d0-b79f-22aa8357d26c</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.