PUT api/Notification/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
NotificationsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| BySMS | boolean |
None. |
|
| ByApp | boolean |
None. |
|
| ByEmail | boolean |
None. |
|
| ByPEC | boolean |
None. |
|
| ByPaper | boolean |
None. |
|
| IdToSendList | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BySMS": true,
"ByApp": true,
"ByEmail": true,
"ByPEC": true,
"ByPaper": true,
"IdToSendList": [
1,
2
]
}
application/xml, text/xml
Sample:
<NotificationsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AmminixtraCommon">
<ByApp>true</ByApp>
<ByEmail>true</ByEmail>
<ByPEC>true</ByPEC>
<ByPaper>true</ByPaper>
<BySMS>true</BySMS>
<IdToSendList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</IdToSendList>
</NotificationsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.