PUT api/me/services/stop
Updates your stop service settings, replacing them entirely with the given information
Request Information
URI Parameters
None.
Body Parameters
Updated stop service settings
StopServiceDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Active |
Whether the Stop service is active or not |
boolean |
None. |
| Append |
Whether the message should be appended to all the messages |
boolean |
None. |
| Message |
The stop message itself |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Active": true,
"Append": true,
"Message": "sample string 3"
}
Response Information
Resource Description
Stop service settings
StopServiceDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Active |
Whether the Stop service is active or not |
boolean |
None. |
| Append |
Whether the message should be appended to all the messages |
boolean |
None. |
| Message |
The stop message itself |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Active": true,
"Append": true,
"Message": "sample string 3"
}