GET api/Emails
Retrieves all email events.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
All email events with the related body texts.
Collection of Email| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Event | string |
None. |
|
| Subject | string |
None. |
|
| Body | string |
None. |
|
| IsBodyHtml | boolean |
None. |
|
| RecipientsTo | string |
None. |
|
| RecipientsCc | string |
None. |
|
| AttachmentPath | string |
None. |
|
| ErstellDat | date |
None. |
|
| ErstellUs | string |
None. |
|
| AendDat | date |
None. |
|
| AendUs | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Event": "sample string 2",
"Subject": "sample string 3",
"Body": "sample string 4",
"IsBodyHtml": true,
"RecipientsTo": "sample string 6",
"RecipientsCc": "sample string 7",
"AttachmentPath": "sample string 8",
"ErstellDat": "2026-04-07T13:31:38.9127408+02:00",
"ErstellUs": "sample string 9",
"AendDat": "2026-04-07T13:31:38.9127408+02:00",
"AendUs": "sample string 10"
},
{
"Id": 1,
"Event": "sample string 2",
"Subject": "sample string 3",
"Body": "sample string 4",
"IsBodyHtml": true,
"RecipientsTo": "sample string 6",
"RecipientsCc": "sample string 7",
"AttachmentPath": "sample string 8",
"ErstellDat": "2026-04-07T13:31:38.9127408+02:00",
"ErstellUs": "sample string 9",
"AendDat": "2026-04-07T13:31:38.9127408+02:00",
"AendUs": "sample string 10"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models">
<Email>
<AendDat>2026-04-07T13:31:38.9127408+02:00</AendDat>
<AendUs>sample string 10</AendUs>
<AttachmentPath>sample string 8</AttachmentPath>
<Body>sample string 4</Body>
<ErstellDat>2026-04-07T13:31:38.9127408+02:00</ErstellDat>
<ErstellUs>sample string 9</ErstellUs>
<Event>sample string 2</Event>
<Id>1</Id>
<IsBodyHtml>true</IsBodyHtml>
<RecipientsCc>sample string 7</RecipientsCc>
<RecipientsTo>sample string 6</RecipientsTo>
<Subject>sample string 3</Subject>
</Email>
<Email>
<AendDat>2026-04-07T13:31:38.9127408+02:00</AendDat>
<AendUs>sample string 10</AendUs>
<AttachmentPath>sample string 8</AttachmentPath>
<Body>sample string 4</Body>
<ErstellDat>2026-04-07T13:31:38.9127408+02:00</ErstellDat>
<ErstellUs>sample string 9</ErstellUs>
<Event>sample string 2</Event>
<Id>1</Id>
<IsBodyHtml>true</IsBodyHtml>
<RecipientsCc>sample string 7</RecipientsCc>
<RecipientsTo>sample string 6</RecipientsTo>
<Subject>sample string 3</Subject>
</Email>
</ArrayOfEmail>