POST api/invites/search
Returns all the invites that match the given .
Request Information
URI Parameters
None.
Body Parameters
InviteCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| CampaignId | globally unique identifier |
None. |
|
| Id | globally unique identifier |
None. |
|
| PersonId | globally unique identifier |
None. |
|
| PromotionalEventId | globally unique identifier |
None. |
|
| AppointmentStartBefore | date |
None. |
|
| AppointmentStartAfter | date |
None. |
|
| EventStartBefore | date |
None. |
|
| EventStartAfter | date |
None. |
|
| Booked | boolean |
None. |
|
| Attended | boolean |
None. |
|
| Purchased | boolean |
None. |
|
| InteractionCriteria | CommunicationInteractionCriteriaDto |
None. |
|
| AddressStatusCriteria | AddressStatusCriteriaDto |
None. |
|
| ReceiveSmsCommunications | boolean |
None. |
|
| ReceiveEmailCommunications | boolean |
None. |
|
| ReceiveMailCommunications | boolean |
None. |
|
| WithAddressPropertyNames | Collection of string |
None. |
|
| WithAddressPropertyValues | Collection of string |
None. |
|
| HasEmailAddress | boolean |
None. |
|
| HasTelephone | boolean |
None. |
|
| HasPostalCode | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| SecurityGroupIds | Collection of globally unique identifier |
None. |
|
| Pagination | PaginationCriteriaDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"CampaignId": "0b7cf0a8-b150-46a3-8ec6-a79e930af63d",
"Id": "4ad80900-b2d8-4ba2-92f2-6281c0296b82",
"PersonId": "4523de14-2227-416b-94e6-80d7385313e6",
"PromotionalEventId": "9ae76cfd-cfa3-4d50-85ae-7ed1e2a3be0c",
"AppointmentStartBefore": "2026-01-09T14:11:26.351439+00:00",
"AppointmentStartAfter": "2026-01-09T14:11:26.351439+00:00",
"EventStartBefore": "2026-01-09T14:11:26.351439+00:00",
"EventStartAfter": "2026-01-09T14:11:26.351439+00:00",
"Booked": true,
"Attended": true,
"Purchased": true,
"InteractionCriteria": {
"CommunicationId": "bc1276e8-17ce-4d46-9679-fe5283d72d18",
"InteractionType": 0,
"InteractionTypeNot": 0
},
"AddressStatusCriteria": {
"AddressStatus": 0,
"AddressStatusNot": 0
},
"ReceiveSmsCommunications": true,
"ReceiveEmailCommunications": true,
"ReceiveMailCommunications": true,
"WithAddressPropertyNames": [
"sample string 1",
"sample string 2"
],
"WithAddressPropertyValues": [
"sample string 1",
"sample string 2"
],
"HasEmailAddress": true,
"HasTelephone": true,
"HasPostalCode": true,
"IsDeleted": true,
"SecurityGroupIds": [
"cc0833fc-233d-4252-afa8-042aa5bb6b6a",
"cf60b2f8-d441-4120-9db0-cc8745cc4666"
],
"Pagination": {
"PageNumber": 1,
"PageSize": 1
}
}
application/xml, text/xml
Sample:
<InviteCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models">
<AddressStatusCriteria>
<AddressStatus>Ok</AddressStatus>
<AddressStatusNot>Ok</AddressStatusNot>
</AddressStatusCriteria>
<AppointmentStartAfter>2026-01-09T14:11:26.351439+00:00</AppointmentStartAfter>
<AppointmentStartBefore>2026-01-09T14:11:26.351439+00:00</AppointmentStartBefore>
<Attended>true</Attended>
<Booked>true</Booked>
<CampaignId>0b7cf0a8-b150-46a3-8ec6-a79e930af63d</CampaignId>
<EventStartAfter>2026-01-09T14:11:26.351439+00:00</EventStartAfter>
<EventStartBefore>2026-01-09T14:11:26.351439+00:00</EventStartBefore>
<HasEmailAddress>true</HasEmailAddress>
<HasPostalCode>true</HasPostalCode>
<HasTelephone>true</HasTelephone>
<Id>4ad80900-b2d8-4ba2-92f2-6281c0296b82</Id>
<InteractionCriteria>
<CommunicationId>bc1276e8-17ce-4d46-9679-fe5283d72d18</CommunicationId>
<InteractionType>Undefined</InteractionType>
<InteractionTypeNot>Undefined</InteractionTypeNot>
</InteractionCriteria>
<IsDeleted>true</IsDeleted>
<Pagination>
<PageNumber>1</PageNumber>
<PageSize>1</PageSize>
</Pagination>
<PersonId>4523de14-2227-416b-94e6-80d7385313e6</PersonId>
<PromotionalEventId>9ae76cfd-cfa3-4d50-85ae-7ed1e2a3be0c</PromotionalEventId>
<Purchased>true</Purchased>
<ReceiveEmailCommunications>true</ReceiveEmailCommunications>
<ReceiveMailCommunications>true</ReceiveMailCommunications>
<ReceiveSmsCommunications>true</ReceiveSmsCommunications>
<SecurityGroupIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>cc0833fc-233d-4252-afa8-042aa5bb6b6a</d2p1:guid>
<d2p1:guid>cf60b2f8-d441-4120-9db0-cc8745cc4666</d2p1:guid>
</SecurityGroupIds>
<WithAddressPropertyNames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</WithAddressPropertyNames>
<WithAddressPropertyValues xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</WithAddressPropertyValues>
</InviteCriteriaDto>
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.