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
NameDescriptionTypeAdditional 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": "94ede900-498c-4c6c-bfd2-f1967a32bc5f",
  "CreatorUserId": "4783c8c1-92a8-4656-b465-ebc5b0f0dde7",
  "CategoryId": "98bea611-3a1f-49f7-9549-3d9820264951",
  "TriggerTypeId": "4b8a6b53-5517-46ec-b112-e4c34bd78100",
  "TenantId": "3c304256-a421-46c8-a030-d29c11b700e9",
  "Status": 0,
  "IsDeleted": true,
  "Name": "sample string 1",
  "CreationDateFrom": "2025-12-11T20:15:13.7560994+00:00",
  "CreationDateTo": "2025-12-11T20:15:13.7560994+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>98bea611-3a1f-49f7-9549-3d9820264951</CategoryId>
  <CreationDateFrom>2025-12-11T20:15:13.7560994+00:00</CreationDateFrom>
  <CreationDateTo>2025-12-11T20:15:13.7560994+00:00</CreationDateTo>
  <CreatorUserId>4783c8c1-92a8-4656-b465-ebc5b0f0dde7</CreatorUserId>
  <Id>94ede900-498c-4c6c-bfd2-f1967a32bc5f</Id>
  <IsDeleted>true</IsDeleted>
  <Name>sample string 1</Name>
  <Status>Pending</Status>
  <TenantId>3c304256-a421-46c8-a030-d29c11b700e9</TenantId>
  <TriggerTypeId>4b8a6b53-5517-46ec-b112-e4c34bd78100</TriggerTypeId>
</TriggersFilterCriteriaDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.