PUT api/communications/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
CommunicationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| Name | string |
None. |
|
| CommunicationType | CommunicationDtoType |
None. |
|
| CommunicationStatus | CommunicationDtoStatus |
None. |
|
| LeadUpDuration | integer |
None. |
|
| TemplateId | globally unique identifier |
None. |
|
| TemplateName | string |
None. |
|
| Subject | string |
None. |
|
| CampaignId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
|
| CommunicationTemplateId | globally unique identifier |
None. |
|
| IncludeBooked | boolean |
None. |
|
| IncludeAttended | boolean |
None. |
|
| IncludePurchased | boolean |
None. |
|
| EmailCommunicationId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "fe3d7caa-50a2-4c1d-b827-9d0249b5b8f6",
"CreationDate": "2026-01-11T04:29:34.851536+00:00",
"Name": "sample string 3",
"CommunicationType": 0,
"CommunicationStatus": 0,
"LeadUpDuration": 4,
"TemplateId": "0aaf4ca6-8d9b-4415-a42c-c1b6d46191ff",
"TemplateName": "sample string 5",
"Subject": "sample string 6",
"CampaignId": "879ba3e1-a333-48fd-9d4b-d21cd7c98cd5",
"IsDeleted": true,
"CommunicationTemplateId": "878f8c6e-ec9f-4569-bd7a-2bd8ce6fdd03",
"IncludeBooked": true,
"IncludeAttended": true,
"IncludePurchased": true,
"EmailCommunicationId": "d6141b47-9935-41b9-ad7d-7d997bbb7237"
}
application/xml, text/xml
Sample:
<CommunicationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models"> <CampaignId>879ba3e1-a333-48fd-9d4b-d21cd7c98cd5</CampaignId> <CommunicationStatus>Pending</CommunicationStatus> <CommunicationTemplateId>878f8c6e-ec9f-4569-bd7a-2bd8ce6fdd03</CommunicationTemplateId> <CommunicationType>DirectMail</CommunicationType> <CreationDate>2026-01-11T04:29:34.851536+00:00</CreationDate> <EmailCommunicationId>d6141b47-9935-41b9-ad7d-7d997bbb7237</EmailCommunicationId> <Id>fe3d7caa-50a2-4c1d-b827-9d0249b5b8f6</Id> <IncludeAttended>true</IncludeAttended> <IncludeBooked>true</IncludeBooked> <IncludePurchased>true</IncludePurchased> <IsDeleted>true</IsDeleted> <LeadUpDuration>4</LeadUpDuration> <Name>sample string 3</Name> <Subject>sample string 6</Subject> <TemplateId>0aaf4ca6-8d9b-4415-a42c-c1b6d46191ff</TemplateId> <TemplateName>sample string 5</TemplateName> </CommunicationDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.