POST api/invites/search
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. |
|
| Pagination | PaginationCriteriaDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"CampaignId": "3ce81df3-797a-4f67-9f5a-a4851b634742",
"Id": "81009783-2ca7-48e6-8f31-dc3d801d12ca",
"PersonId": "ff3d8ffd-5bc7-4c45-a5b9-7f47e5448979",
"PromotionalEventId": "96d8462a-222c-4c49-a604-0e4f69166879",
"AppointmentStartBefore": "2026-01-10T00:51:46.7202998+00:00",
"AppointmentStartAfter": "2026-01-10T00:51:46.7202998+00:00",
"EventStartBefore": "2026-01-10T00:51:46.7202998+00:00",
"EventStartAfter": "2026-01-10T00:51:46.7202998+00:00",
"Booked": true,
"Attended": true,
"Purchased": true,
"InteractionCriteria": {
"CommunicationId": "6e224335-a703-4e0e-9983-b2372609f81b",
"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,
"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-10T00:51:46.7202998+00:00</AppointmentStartAfter>
<AppointmentStartBefore>2026-01-10T00:51:46.7202998+00:00</AppointmentStartBefore>
<Attended>true</Attended>
<Booked>true</Booked>
<CampaignId>3ce81df3-797a-4f67-9f5a-a4851b634742</CampaignId>
<EventStartAfter>2026-01-10T00:51:46.7202998+00:00</EventStartAfter>
<EventStartBefore>2026-01-10T00:51:46.7202998+00:00</EventStartBefore>
<HasEmailAddress>true</HasEmailAddress>
<HasPostalCode>true</HasPostalCode>
<HasTelephone>true</HasTelephone>
<Id>81009783-2ca7-48e6-8f31-dc3d801d12ca</Id>
<InteractionCriteria>
<CommunicationId>6e224335-a703-4e0e-9983-b2372609f81b</CommunicationId>
<InteractionType>Undefined</InteractionType>
<InteractionTypeNot>Undefined</InteractionTypeNot>
</InteractionCriteria>
<IsDeleted>true</IsDeleted>
<Pagination>
<PageNumber>1</PageNumber>
<PageSize>1</PageSize>
</Pagination>
<PersonId>ff3d8ffd-5bc7-4c45-a5b9-7f47e5448979</PersonId>
<PromotionalEventId>96d8462a-222c-4c49-a604-0e4f69166879</PromotionalEventId>
<Purchased>true</Purchased>
<ReceiveEmailCommunications>true</ReceiveEmailCommunications>
<ReceiveMailCommunications>true</ReceiveMailCommunications>
<ReceiveSmsCommunications>true</ReceiveSmsCommunications>
<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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.