POST api/ConfigParams/UpdateEmail
Request Information
URI Parameters
None.
Body Parameters
EmailConfigModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| string |
None. |
||
| Password | string |
None. |
|
| Host | string |
None. |
|
| Port | integer |
None. |
|
| SSL | boolean |
None. |
|
| ActiveMailsService | boolean |
None. |
|
| LastAttemptMailsService | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Email": "sample string 2",
"Password": "sample string 3",
"Host": "sample string 4",
"Port": 5,
"SSL": true,
"ActiveMailsService": true,
"LastAttemptMailsService": "2025-12-05T21:56:11.6542988-06:00"
}
application/xml, text/xml
Sample:
<EmailConfigModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CLVSMISIntMorAPI.MODELS"> <ActiveMailsService>true</ActiveMailsService> <Email>sample string 2</Email> <Host>sample string 4</Host> <Id>1</Id> <LastAttemptMailsService>2025-12-05T21:56:11.6542988-06:00</LastAttemptMailsService> <Password>sample string 3</Password> <Port>5</Port> <SSL>true</SSL> </EmailConfigModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |