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-09T14:10:35.6886392+00:00",
"InviteId": "745e959d-7705-48f7-9e63-1eaa749f82d0",
"CommunicationId": "0bf16f21-3fbe-439b-908d-ae5536b15c31",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
},
{
"Key": "sample string 1",
"CreationDate": "2026-01-09T14:10:35.6886392+00:00",
"InviteId": "745e959d-7705-48f7-9e63-1eaa749f82d0",
"CommunicationId": "0bf16f21-3fbe-439b-908d-ae5536b15c31",
"CommunicationName": "sample string 5",
"CommunicationType": "sample string 6"
}
],
"Id": "f1168ed2-8c00-478a-8bee-4639c979388b",
"CreationDate": "2026-01-09T14:10:35.6886392+00:00",
"AppointmentId": "ee0d791f-6185-45bc-aa49-8349e3136e86",
"PersonId": "9380d64b-7e21-41ec-aa40-793f890924a3",
"PromotionalEventId": "091d1b03-9a42-4bf8-b9c5-c3dc9e97886b",
"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>ee0d791f-6185-45bc-aa49-8349e3136e86</AppointmentId>
<CreationDate>2026-01-09T14:10:35.6886392+00:00</CreationDate>
<Id>f1168ed2-8c00-478a-8bee-4639c979388b</Id>
<IsDeleted>true</IsDeleted>
<PersonId>9380d64b-7e21-41ec-aa40-793f890924a3</PersonId>
<PromotionalEventId>091d1b03-9a42-4bf8-b9c5-c3dc9e97886b</PromotionalEventId>
<InviteKeys>
<InviteKeyDto>
<CommunicationId>0bf16f21-3fbe-439b-908d-ae5536b15c31</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-09T14:10:35.6886392+00:00</CreationDate>
<InviteId>745e959d-7705-48f7-9e63-1eaa749f82d0</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
<InviteKeyDto>
<CommunicationId>0bf16f21-3fbe-439b-908d-ae5536b15c31</CommunicationId>
<CommunicationName>sample string 5</CommunicationName>
<CommunicationType>sample string 6</CommunicationType>
<CreationDate>2026-01-09T14:10:35.6886392+00:00</CreationDate>
<InviteId>745e959d-7705-48f7-9e63-1eaa749f82d0</InviteId>
<Key>sample string 1</Key>
</InviteKeyDto>
</InviteKeys>
</InviteDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.