GET v1/EMails/{mailId}
Get detailed information about an EMail.
Request Information
Requires Authorization!
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| mailId |
The id of the EMail. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
The EMail object.
| Name | Description | Type | Additional information |
|---|---|---|---|
| MailServerMsgId |
Gets or sets the mail server MSG identifier. |
string |
None. |
| FromAddress |
Gets or sets from address. |
string |
Max length: 255 |
| ToAddress |
Gets or sets the 'To' address. |
string |
Max length: 2147483647 |
| CcAddress |
Gets or sets the 'CC' address. |
string |
None. |
| BccAddress |
Gets or sets the 'BCC' address. |
string |
None. |
| Subject |
Gets or sets the email subject. |
string |
Max length: 255 |
| Content |
Gets or sets the content. |
string |
Max length: 2147483647 |
| Note |
Gets or sets the note. |
string |
None. |
| Categories |
Gets or sets the categories. |
Collection of MessageCategoryBasicInfo |
None. |
| EmployeeId |
Gets or sets the employee identifier. |
integer |
None. |
| OrderId |
Gets or sets the order identifier. |
integer |
None. |
| Id |
Gets or sets the identifier. |
integer |
Required |
| ShopId |
Gets or sets the shop identifier. |
integer |
Required |
| Date |
Gets or sets the date. |
date |
Required |
| MailboxId |
Gets or sets the mailbox identifier. |
integer |
Required |
Response Formats
application/json, text/json
{
"MailServerMsgId": "sample string 1",
"FromAddress": "sample string 2",
"ToAddress": "sample string 3",
"CcAddress": "sample string 4",
"BccAddress": "sample string 5",
"Subject": "sample string 6",
"Content": "sample string 7",
"Note": "sample string 8",
"Categories": [
{
"Id": 1,
"Name": "sample string 2"
},
{
"Id": 1,
"Name": "sample string 2"
}
],
"EmployeeId": 1,
"OrderId": 1,
"Id": 9,
"ShopId": 10,
"Date": "2026-04-03T18:25:18.9669104+02:00",
"MailboxId": 12
}
application/xml, text/xml
<EMail xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Id>9</Id>
<ShopId>10</ShopId>
<Date>2026-04-03T18:25:18.9669104+02:00</Date>
<MailboxId>12</MailboxId>
<MailServerMsgId>sample string 1</MailServerMsgId>
<FromAddress>sample string 2</FromAddress>
<ToAddress>sample string 3</ToAddress>
<CcAddress>sample string 4</CcAddress>
<BccAddress>sample string 5</BccAddress>
<Subject>sample string 6</Subject>
<Content>sample string 7</Content>
<Note>sample string 8</Note>
<Categories>
<MessageCategoryBasicInfo>
<Id>1</Id>
<Name>sample string 2</Name>
</MessageCategoryBasicInfo>
<MessageCategoryBasicInfo>
<Id>1</Id>
<Name>sample string 2</Name>
</MessageCategoryBasicInfo>
</Categories>
<EmployeeId>1</EmployeeId>
<OrderId>1</OrderId>
</EMail>