POST api/communications
Creates a communication from the given .
Request Information
URI Parameters
None.
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": "53198c0f-978c-4bb5-a967-a2c3fd430d91",
"CreationDate": "2026-01-09T14:08:44.5872453+00:00",
"Name": "sample string 3",
"CommunicationType": 0,
"CommunicationStatus": 0,
"LeadUpDuration": 4,
"TemplateId": "e93dac62-ba13-45de-8bb1-b7b676b87865",
"TemplateName": "sample string 5",
"Subject": "sample string 6",
"CampaignId": "f5cc417d-c23e-459e-8238-d896a1f333e9",
"IsDeleted": true,
"CommunicationTemplateId": "e403d9ca-388a-4e4f-8d9e-434dc4657b28",
"IncludeBooked": true,
"IncludeAttended": true,
"IncludePurchased": true,
"EmailCommunicationId": "fdd191a8-ed04-451b-aaba-40b6f0a75127"
}
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>f5cc417d-c23e-459e-8238-d896a1f333e9</CampaignId> <CommunicationStatus>Pending</CommunicationStatus> <CommunicationTemplateId>e403d9ca-388a-4e4f-8d9e-434dc4657b28</CommunicationTemplateId> <CommunicationType>DirectMail</CommunicationType> <CreationDate>2026-01-09T14:08:44.5872453+00:00</CreationDate> <EmailCommunicationId>fdd191a8-ed04-451b-aaba-40b6f0a75127</EmailCommunicationId> <Id>53198c0f-978c-4bb5-a967-a2c3fd430d91</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>e93dac62-ba13-45de-8bb1-b7b676b87865</TemplateId> <TemplateName>sample string 5</TemplateName> </CommunicationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.