POST api/Subscriptions/select
Retrieves a list of subscriptions that match the given criteria.
Request Information
URI Parameters
None.
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": "b9b6c773-9efb-454f-8517-67509ea4d81a",
"IdNot": "fbb64acd-c1f3-40b0-9029-0463cf646168",
"Name": "sample string 1",
"CreatorUserId": "eb1da390-7716-43ee-9d34-5db62d5222d8",
"IsActive": true,
"IsDeleted": true,
"TriggerTypeId": "09769265-206f-48b6-ac60-8ce133487331",
"TenantIds": [
"053c32b5-758c-4952-99c5-a30a348ee957",
"5d6bf9eb-8aa5-4b3d-9714-cd22feec7e46"
],
"CreationDateFrom": "2026-01-10T00:45:21.5809792+00:00",
"CreationDateTo": "2026-01-10T00:45:21.5809792+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-10T00:45:21.5809792+00:00</CreationDateFrom>
<CreationDateTo>2026-01-10T00:45:21.5809792+00:00</CreationDateTo>
<CreatorUserId>eb1da390-7716-43ee-9d34-5db62d5222d8</CreatorUserId>
<Id>b9b6c773-9efb-454f-8517-67509ea4d81a</Id>
<IdNot>fbb64acd-c1f3-40b0-9029-0463cf646168</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>053c32b5-758c-4952-99c5-a30a348ee957</d2p1:guid>
<d2p1:guid>5d6bf9eb-8aa5-4b3d-9714-cd22feec7e46</d2p1:guid>
</TenantIds>
<TriggerTypeId>09769265-206f-48b6-ac60-8ce133487331</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.