POST api/invites
Creates an invite from the given
Request Information
URI Parameters
None.
Body Parameters
InviteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| InviteKeys | Collection of InviteKeyDto |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| AppointmentId | globally unique identifier |
None. |
|
| PersonId | globally unique identifier |
None. |
|
| PromotionalEventId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"InviteKeys": [
{
"Key": "sample string 1",
"CreationDate": "2026-01-11T04:27:17.9431383+00:00",
"InviteId": "53c1f72d-a712-4168-a1bb-71400035d263",
"CommunicationId": "fe268114-3580-40b3-b74c-4e79e9f51b49",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
},
{
"Key": "sample string 1",
"CreationDate": "2026-01-11T04:27:17.9431383+00:00",
"InviteId": "53c1f72d-a712-4168-a1bb-71400035d263",
"CommunicationId": "fe268114-3580-40b3-b74c-4e79e9f51b49",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
}
],
"Id": "34620a3f-a8ff-43cb-b80e-a53182d6455a",
"CreationDate": "2026-01-11T04:27:17.9431383+00:00",
"AppointmentId": "d3223200-6fed-44f5-8910-afa4b3ed8edc",
"PersonId": "861a37b4-5bf4-44b8-ba0b-2448035181f2",
"PromotionalEventId": "c1adf4c1-3bb3-416f-98ce-61074652daec",
"IsDeleted": true
}
application/xml, text/xml
Sample:
<InviteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models">
<AppointmentId>d3223200-6fed-44f5-8910-afa4b3ed8edc</AppointmentId>
<CreationDate>2026-01-11T04:27:17.9431383+00:00</CreationDate>
<Id>34620a3f-a8ff-43cb-b80e-a53182d6455a</Id>
<IsDeleted>true</IsDeleted>
<PersonId>861a37b4-5bf4-44b8-ba0b-2448035181f2</PersonId>
<PromotionalEventId>c1adf4c1-3bb3-416f-98ce-61074652daec</PromotionalEventId>
<InviteKeys>
<InviteKeyDto>
<CommunicationId>fe268114-3580-40b3-b74c-4e79e9f51b49</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-11T04:27:17.9431383+00:00</CreationDate>
<InviteId>53c1f72d-a712-4168-a1bb-71400035d263</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
<InviteKeyDto>
<CommunicationId>fe268114-3580-40b3-b74c-4e79e9f51b49</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-11T04:27:17.9431383+00:00</CreationDate>
<InviteId>53c1f72d-a712-4168-a1bb-71400035d263</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
</InviteKeys>
</InviteDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.