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

Retrieves a paged list of subscription actions 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 subscription actions by.

SubscriptionActionRunsFilterCriteriaDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IdNot

globally unique identifier

None.

CreatorUserId

globally unique identifier

None.

ActionId

globally unique identifier

None.

TriggerId

globally unique identifier

None.

TenantId

globally unique identifier

None.

Status

SubscriptionActionStatusDto

None.

IsDeleted

boolean

None.

CreationDateFrom

date

None.

CreationDateTo

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "e4cd59fc-a1f7-40bd-96e5-2bebe0217fd0",
  "IdNot": "d5ca48dc-79a5-4cf1-be39-1aa38fb0416e",
  "CreatorUserId": "ed8686ec-4c83-442f-a0b4-5e306203b91d",
  "ActionId": "7760c4ee-8f23-4db6-8910-5b11506b6ce5",
  "TriggerId": "cd431e70-3858-40ed-bf33-63b9d439f73e",
  "TenantId": "d26be9a6-d631-405e-8886-0015a70d4acd",
  "Status": 0,
  "IsDeleted": true,
  "CreationDateFrom": "2025-12-11T20:16:36.8007074+00:00",
  "CreationDateTo": "2025-12-11T20:16:36.8007074+00:00"
}

application/xml, text/xml

Sample:
<SubscriptionActionRunsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models.FilterCriteria">
  <ActionId>7760c4ee-8f23-4db6-8910-5b11506b6ce5</ActionId>
  <CreationDateFrom>2025-12-11T20:16:36.8007074+00:00</CreationDateFrom>
  <CreationDateTo>2025-12-11T20:16:36.8007074+00:00</CreationDateTo>
  <CreatorUserId>ed8686ec-4c83-442f-a0b4-5e306203b91d</CreatorUserId>
  <Id>e4cd59fc-a1f7-40bd-96e5-2bebe0217fd0</Id>
  <IdNot>d5ca48dc-79a5-4cf1-be39-1aa38fb0416e</IdNot>
  <IsDeleted>true</IsDeleted>
  <Status>Pending</Status>
  <TenantId>d26be9a6-d631-405e-8886-0015a70d4acd</TenantId>
  <TriggerId>cd431e70-3858-40ed-bf33-63b9d439f73e</TriggerId>
</SubscriptionActionRunsFilterCriteriaDto>

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.