GET api/GetEmailAccountById/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
EmailsName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
string |
None. |
||
DisplayName | string |
None. |
|
Host | string |
None. |
|
Port | integer |
None. |
|
Username | string |
None. |
|
Password | string |
None. |
|
EnableSsl | boolean |
None. |
|
UseDefaultCredentials | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Email": "sample string 2", "DisplayName": "sample string 3", "Host": "sample string 4", "Port": 5, "Username": "sample string 6", "Password": "sample string 7", "EnableSsl": true, "UseDefaultCredentials": true }
application/xml, text/xml
Sample:
<Emails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RCPQG_API.Models"> <DisplayName>sample string 3</DisplayName> <Email>sample string 2</Email> <EnableSsl>true</EnableSsl> <Host>sample string 4</Host> <Id>1</Id> <Password>sample string 7</Password> <Port>5</Port> <UseDefaultCredentials>true</UseDefaultCredentials> <Username>sample string 6</Username> </Emails>