PUT api/me/services/emailcopy
Updates your email copy service settings, replacing them entirely with the given information
Request Information
URI Parameters
None.
Body Parameters
EmailCopyDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SenderName |
The display name of the email sender |
string |
None. |
| SenderAddress |
The address the email should be sent from |
string |
None. |
| Subject |
The title subject in the email copy |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SenderName": "sample string 1",
"SenderAddress": "sample string 2",
"Subject": "sample string 3"
}
Response Information
Resource Description
Service status information
EmailCopyServiceStatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SenderName |
The name of the sender for... |
string |
None. |
| SenderAddress |
The address the email should be sent from |
string |
None. |
| Subject |
The title subject in the email copy |
string |
None. |
| ID |
Service type ID |
integer |
None. |
| Name |
Name of service |
string |
None. |
| Status |
Service status |
ServiceStatus |
None. |
| StatusDescription |
Service status description |
string |
None. |
| Since |
When the service began |
date |
None. |
| Until |
When the service stops |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"SenderName": "sample string 1",
"SenderAddress": "sample string 2",
"Subject": "sample string 3",
"ID": 4,
"Name": "sample string 5",
"Status": 0,
"StatusDescription": "None",
"Since": "2025-12-16T03:27:15.2304572+00:00",
"Until": "2025-12-16T03:27:15.2304572+00:00"
}