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": "0a3e5e04-891f-4d05-9230-7a6e3352752d",
"IdNot": "9ed7f50c-6a5f-422e-8d79-acaf04965034",
"Name": "sample string 1",
"CreatorUserId": "61c459fb-2079-4f50-9820-39442941c6e4",
"IsActive": true,
"IsDeleted": true,
"TriggerTypeId": "45eb1e1b-7f6f-48db-8c8d-73a28bc4695f",
"TenantIds": [
"fedd158c-866f-40a5-ba77-f72978640c26",
"73bedd06-1628-4653-a3ef-22fdf239dc1d"
],
"CreationDateFrom": "2026-01-10T18:54:06.2943071+00:00",
"CreationDateTo": "2026-01-10T18:54:06.2943071+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-10T18:54:06.2943071+00:00</CreationDateFrom>
<CreationDateTo>2026-01-10T18:54:06.2943071+00:00</CreationDateTo>
<CreatorUserId>61c459fb-2079-4f50-9820-39442941c6e4</CreatorUserId>
<Id>0a3e5e04-891f-4d05-9230-7a6e3352752d</Id>
<IdNot>9ed7f50c-6a5f-422e-8d79-acaf04965034</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>fedd158c-866f-40a5-ba77-f72978640c26</d2p1:guid>
<d2p1:guid>73bedd06-1628-4653-a3ef-22fdf239dc1d</d2p1:guid>
</TenantIds>
<TriggerTypeId>45eb1e1b-7f6f-48db-8c8d-73a28bc4695f</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.