GET /system/email_servers
Retrieves a list of all email servers.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
Range |
header |
Optional |
String |
text/plain |
Optional - Use this parameter to restrict the number of elements that are returned in the list to a specified range. The list is indexed starting at zero. |
filter |
query |
Optional |
String |
text/plain |
Optional - This parameter is used to restrict the elements in a list base on the contents of various fields. |
fields |
query |
Optional |
String |
text/plain |
Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas. |
HTTP Response Code | Unique Code | Description |
---|---|---|
200 |
The requested list of email server records was successfully retrieved. |
|
500 |
1000 |
Problem encountered while attempting to read the database. |
500 |
1001 |
Problem encountered while attempting to read the default email server from the database. |
Response Description
- id - Number - ID of the email server.
- description - String - Description identifying the email server.
- hostname - String - Hostname of the email server.
- port - Number - Port to connect to the email server with.
- username - String - User name to authenticate with the email server.
- password - String - Password to authenticate with the email server.
- enable_tls - Boolean - Whether to ignore TLS verification errors to the email server.
Response Sample
[
{
"default": true,
"description": "String",
"enable_tls": true,
"hostname": "String",
"id": 42,
"password": "String",
"port": 42,
"username": "String"
}
]