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-11T04:31:42.4521034+00:00",
"InviteId": "442ac557-8606-49ee-8039-44f80a7cca73",
"CommunicationId": "fc6c0eba-c13b-4d2f-85ce-aae3547eca5c",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
},
{
"Key": "sample string 1",
"CreationDate": "2026-01-11T04:31:42.4521034+00:00",
"InviteId": "442ac557-8606-49ee-8039-44f80a7cca73",
"CommunicationId": "fc6c0eba-c13b-4d2f-85ce-aae3547eca5c",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
}
],
"Id": "2072a417-e845-4b94-bd01-3b43f7b31d6e",
"CreationDate": "2026-01-11T04:31:42.4521034+00:00",
"AppointmentId": "d47406ff-63c9-42c9-8ac9-dddf078e35c2",
"PersonId": "c140170d-24b6-46c0-bc17-a77920989a21",
"PromotionalEventId": "425eee2e-87d5-4b1b-bff8-32e25e46d165",
"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>d47406ff-63c9-42c9-8ac9-dddf078e35c2</AppointmentId>
<CreationDate>2026-01-11T04:31:42.4521034+00:00</CreationDate>
<Id>2072a417-e845-4b94-bd01-3b43f7b31d6e</Id>
<IsDeleted>true</IsDeleted>
<PersonId>c140170d-24b6-46c0-bc17-a77920989a21</PersonId>
<PromotionalEventId>425eee2e-87d5-4b1b-bff8-32e25e46d165</PromotionalEventId>
<InviteKeys>
<InviteKeyDto>
<CommunicationId>fc6c0eba-c13b-4d2f-85ce-aae3547eca5c</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-11T04:31:42.4521034+00:00</CreationDate>
<InviteId>442ac557-8606-49ee-8039-44f80a7cca73</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
<InviteKeyDto>
<CommunicationId>fc6c0eba-c13b-4d2f-85ce-aae3547eca5c</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-11T04:31:42.4521034+00:00</CreationDate>
<InviteId>442ac557-8606-49ee-8039-44f80a7cca73</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
</InviteKeys>
</InviteDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.