POST api/triggertypes/select/{pageNumber}/{pageSize}

Retrieves a paged list of trigger types that match the given criteria.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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 trigger types by.

TriggerTypesFilterCriteriaDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

CreatorUserId

globally unique identifier

None.

CategoryId

globally unique identifier

None.

IsDeleted

boolean

None.

Name

string

None.

CreationDateFrom

date

None.

CreationDateTo

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "2931d02b-39dd-4409-a1ce-e1d49ff4c887",
  "CreatorUserId": "03a831cc-d49c-4d8e-9718-239b28e9ff69",
  "CategoryId": "c68089fc-f189-48d6-83ee-74e4d19048e9",
  "IsDeleted": true,
  "Name": "sample string 1",
  "CreationDateFrom": "2025-12-11T20:14:57.4380497+00:00",
  "CreationDateTo": "2025-12-11T20:14:57.4380497+00:00"
}

application/xml, text/xml

Sample:
<TriggerTypesFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models.FilterCriteria">
  <CategoryId>c68089fc-f189-48d6-83ee-74e4d19048e9</CategoryId>
  <CreationDateFrom>2025-12-11T20:14:57.4380497+00:00</CreationDateFrom>
  <CreationDateTo>2025-12-11T20:14:57.4380497+00:00</CreationDateTo>
  <CreatorUserId>03a831cc-d49c-4d8e-9718-239b28e9ff69</CreatorUserId>
  <Id>2931d02b-39dd-4409-a1ce-e1d49ff4c887</Id>
  <IsDeleted>true</IsDeleted>
  <Name>sample string 1</Name>
</TriggerTypesFilterCriteriaDto>

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.