PUT api/invites/{id}
Updates the invite from the given .
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the resource. |
globally unique identifier |
Required |
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-10T00:56:13.5984459+00:00",
"InviteId": "47abb2cd-e984-410f-8141-7967d4adc844",
"CommunicationId": "25014435-34d5-4de0-8b7b-5b6bafd2319b",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
},
{
"Key": "sample string 1",
"CreationDate": "2026-01-10T00:56:13.5984459+00:00",
"InviteId": "47abb2cd-e984-410f-8141-7967d4adc844",
"CommunicationId": "25014435-34d5-4de0-8b7b-5b6bafd2319b",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
}
],
"Id": "eeb51f88-9482-4ccc-8a5a-44a25d44ca95",
"CreationDate": "2026-01-10T00:56:13.5984459+00:00",
"AppointmentId": "6e9a2cb6-5f48-4291-9c5f-69bfa1a35e54",
"PersonId": "a98bb260-3a22-41ca-a593-533da1a8c80f",
"PromotionalEventId": "6650d00b-a1be-40fc-8eaf-d1fbc3f54acf",
"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>6e9a2cb6-5f48-4291-9c5f-69bfa1a35e54</AppointmentId>
<CreationDate>2026-01-10T00:56:13.5984459+00:00</CreationDate>
<Id>eeb51f88-9482-4ccc-8a5a-44a25d44ca95</Id>
<IsDeleted>true</IsDeleted>
<PersonId>a98bb260-3a22-41ca-a593-533da1a8c80f</PersonId>
<PromotionalEventId>6650d00b-a1be-40fc-8eaf-d1fbc3f54acf</PromotionalEventId>
<InviteKeys>
<InviteKeyDto>
<CommunicationId>25014435-34d5-4de0-8b7b-5b6bafd2319b</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-10T00:56:13.5984459+00:00</CreationDate>
<InviteId>47abb2cd-e984-410f-8141-7967d4adc844</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
<InviteKeyDto>
<CommunicationId>25014435-34d5-4de0-8b7b-5b6bafd2319b</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-10T00:56:13.5984459+00:00</CreationDate>
<InviteId>47abb2cd-e984-410f-8141-7967d4adc844</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
</InviteKeys>
</InviteDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.