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": "f03a7b67-884c-4bd0-a26c-628a68e255d2",
"IdNot": "0305f1a6-5bc5-4448-8a95-0448f7a484be",
"Name": "sample string 1",
"CreatorUserId": "2da2e14a-855f-4b26-9aef-dafe87b5e545",
"IsActive": true,
"IsDeleted": true,
"TriggerTypeId": "11bdefef-b973-4bcc-9249-78770e8ec6d6",
"TenantIds": [
"e342247c-4bd2-4454-866a-62e6739bdf81",
"86980dcc-e57b-4235-8bb0-436efbef9d66"
],
"CreationDateFrom": "2025-12-11T20:15:10.0055812+00:00",
"CreationDateTo": "2025-12-11T20:15:10.0055812+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>2025-12-11T20:15:10.0055812+00:00</CreationDateFrom>
<CreationDateTo>2025-12-11T20:15:10.0055812+00:00</CreationDateTo>
<CreatorUserId>2da2e14a-855f-4b26-9aef-dafe87b5e545</CreatorUserId>
<Id>f03a7b67-884c-4bd0-a26c-628a68e255d2</Id>
<IdNot>0305f1a6-5bc5-4448-8a95-0448f7a484be</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>e342247c-4bd2-4454-866a-62e6739bdf81</d2p1:guid>
<d2p1:guid>86980dcc-e57b-4235-8bb0-436efbef9d66</d2p1:guid>
</TenantIds>
<TriggerTypeId>11bdefef-b973-4bcc-9249-78770e8ec6d6</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.