POST api/Subscriptions/select/{pageNumber}/{pageSize}
Retrieves a paged list of subscriptions that match the given criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional 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 subscriptions with.
SubscriptionsFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNot | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| TriggerTypeId | globally unique identifier |
None. |
|
| TenantIds | Collection of globally unique identifier |
None. |
|
| CreationDateFrom | date |
None. |
|
| CreationDateTo | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "dc76ae46-8e62-423e-a0f6-423ed45c8a49",
"IdNot": "5fe660c6-e2f8-4260-a575-757a6d43ebe5",
"Name": "sample string 1",
"CreatorUserId": "96370b78-3110-49f6-bb72-bfe6d52a3cbc",
"IsActive": true,
"IsDeleted": true,
"TriggerTypeId": "93d72cd8-42a6-4f68-894d-fa28d97dad9d",
"TenantIds": [
"a9aa69f3-0a7a-4c3d-b188-04a3b5745c53",
"c8506f47-d762-4634-a829-f84845b6006c"
],
"CreationDateFrom": "2026-01-10T10:21:53.8797999+00:00",
"CreationDateTo": "2026-01-10T10:21:53.8797999+00:00"
}
application/xml, text/xml
Sample:
<SubscriptionsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Notification.Models.FilterCriteria">
<CreationDateFrom>2026-01-10T10:21:53.8797999+00:00</CreationDateFrom>
<CreationDateTo>2026-01-10T10:21:53.8797999+00:00</CreationDateTo>
<CreatorUserId>96370b78-3110-49f6-bb72-bfe6d52a3cbc</CreatorUserId>
<Id>dc76ae46-8e62-423e-a0f6-423ed45c8a49</Id>
<IdNot>5fe660c6-e2f8-4260-a575-757a6d43ebe5</IdNot>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<Name>sample string 1</Name>
<TenantIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a9aa69f3-0a7a-4c3d-b188-04a3b5745c53</d2p1:guid>
<d2p1:guid>c8506f47-d762-4634-a829-f84845b6006c</d2p1:guid>
</TenantIds>
<TriggerTypeId>93d72cd8-42a6-4f68-894d-fa28d97dad9d</TriggerTypeId>
</SubscriptionsFilterCriteriaDto>
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.