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-09T14:08:42.3751921+00:00",
"InviteId": "e47d303c-75aa-49c1-9ef2-26b4b9dd9ed9",
"CommunicationId": "2799fdc2-03c9-4e14-b392-7c45fd169b8d",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
},
{
"Key": "sample string 1",
"CreationDate": "2026-01-09T14:08:42.3751921+00:00",
"InviteId": "e47d303c-75aa-49c1-9ef2-26b4b9dd9ed9",
"CommunicationId": "2799fdc2-03c9-4e14-b392-7c45fd169b8d",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
}
],
"Id": "bf628fe1-1f3e-43e5-a4f1-eb2297d36c8c",
"CreationDate": "2026-01-09T14:08:42.3908845+00:00",
"AppointmentId": "c2e204ae-4941-4abb-92d7-91a632c5fc4b",
"PersonId": "becf5ed4-36df-4215-b5af-acff5e303217",
"PromotionalEventId": "afb186b0-92e6-4a32-823b-ff714b358d88",
"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>c2e204ae-4941-4abb-92d7-91a632c5fc4b</AppointmentId>
<CreationDate>2026-01-09T14:08:42.3908845+00:00</CreationDate>
<Id>bf628fe1-1f3e-43e5-a4f1-eb2297d36c8c</Id>
<IsDeleted>true</IsDeleted>
<PersonId>becf5ed4-36df-4215-b5af-acff5e303217</PersonId>
<PromotionalEventId>afb186b0-92e6-4a32-823b-ff714b358d88</PromotionalEventId>
<InviteKeys>
<InviteKeyDto>
<CommunicationId>2799fdc2-03c9-4e14-b392-7c45fd169b8d</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-09T14:08:42.3751921+00:00</CreationDate>
<InviteId>e47d303c-75aa-49c1-9ef2-26b4b9dd9ed9</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
<InviteKeyDto>
<CommunicationId>2799fdc2-03c9-4e14-b392-7c45fd169b8d</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-09T14:08:42.3751921+00:00</CreationDate>
<InviteId>e47d303c-75aa-49c1-9ef2-26b4b9dd9ed9</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
</InviteKeys>
</InviteDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.