POST api/communications
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": "aa362d47-0cc2-45c7-afd2-0c5e17a48d9e",
"CreationDate": "2026-01-10T00:54:53.8414119+00:00",
"Name": "sample string 3",
"CommunicationType": 0,
"CommunicationStatus": 0,
"LeadUpDuration": 4,
"TemplateId": "a0f0b23c-57b4-447c-89eb-bab9dc65d352",
"TemplateName": "sample string 5",
"Subject": "sample string 6",
"CampaignId": "0f786fc3-979a-4723-bf45-953920408c19",
"IsDeleted": true,
"CommunicationTemplateId": "fbc41a76-9e02-4cfd-8fae-e26b58c864ce",
"IncludeBooked": true,
"IncludeAttended": true,
"IncludePurchased": true,
"EmailCommunicationId": "09beb448-f2de-4c7d-96d9-305bad9a5813"
}
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>0f786fc3-979a-4723-bf45-953920408c19</CampaignId> <CommunicationStatus>Pending</CommunicationStatus> <CommunicationTemplateId>fbc41a76-9e02-4cfd-8fae-e26b58c864ce</CommunicationTemplateId> <CommunicationType>DirectMail</CommunicationType> <CreationDate>2026-01-10T00:54:53.8414119+00:00</CreationDate> <EmailCommunicationId>09beb448-f2de-4c7d-96d9-305bad9a5813</EmailCommunicationId> <Id>aa362d47-0cc2-45c7-afd2-0c5e17a48d9e</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>a0f0b23c-57b4-447c-89eb-bab9dc65d352</TemplateId> <TemplateName>sample string 5</TemplateName> </CommunicationDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.