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
NameDescriptionTypeAdditional 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": "136078f9-6c95-48cd-b531-e3487d4af50c",
  "IdNot": "4387240c-e25c-4aec-9dbc-0da4f1af6188",
  "Name": "sample string 1",
  "CreatorUserId": "0569d35a-bb06-47b6-97dd-7d62ab1fc489",
  "IsActive": true,
  "IsDeleted": true,
  "TriggerTypeId": "ba0da8bf-01ec-4bc5-89b5-d9a1ad549a89",
  "TenantIds": [
    "369ca026-f819-450e-b709-77fd096ce781",
    "f4840f01-7ea2-4d5c-9efa-478af9fef3e7"
  ],
  "CreationDateFrom": "2025-12-11T20:15:07.1740569+00:00",
  "CreationDateTo": "2025-12-11T20:15:07.1740569+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:07.1740569+00:00</CreationDateFrom>
  <CreationDateTo>2025-12-11T20:15:07.1740569+00:00</CreationDateTo>
  <CreatorUserId>0569d35a-bb06-47b6-97dd-7d62ab1fc489</CreatorUserId>
  <Id>136078f9-6c95-48cd-b531-e3487d4af50c</Id>
  <IdNot>4387240c-e25c-4aec-9dbc-0da4f1af6188</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>369ca026-f819-450e-b709-77fd096ce781</d2p1:guid>
    <d2p1:guid>f4840f01-7ea2-4d5c-9efa-478af9fef3e7</d2p1:guid>
  </TenantIds>
  <TriggerTypeId>ba0da8bf-01ec-4bc5-89b5-d9a1ad549a89</TriggerTypeId>
</SubscriptionsFilterCriteriaDto>

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.