POST api/Notification/DeleteNotification
Request Information
URI Parameters
None.
Body Parameters
UpdateNotificationCommandDtoName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
Id | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
AccountName | string |
None. |
|
Title | string |
None. |
|
Message | string |
None. |
|
NotificationImage | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "8f9a4c1c-759b-47b5-a4f0-31233cafaf14", "Id": "d36123c4-6aa1-4e32-8a82-8a997a6cff99", "AccountId": "ae7cbdbc-4b6f-4a3f-94a9-20b02f7ae57c", "AccountName": "sample string 3", "Title": "sample string 4", "Message": "sample string 5", "NotificationImage": "sample string 6" }
application/xml, text/xml
Sample:
<UpdateNotificationCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.NotificationModule.Model"> <AccountId>ae7cbdbc-4b6f-4a3f-94a9-20b02f7ae57c</AccountId> <AccountName>sample string 3</AccountName> <Id>d36123c4-6aa1-4e32-8a82-8a997a6cff99</Id> <Message>sample string 5</Message> <NotificationImage>sample string 6</NotificationImage> <Title>sample string 4</Title> <UserId>8f9a4c1c-759b-47b5-a4f0-31233cafaf14</UserId> </UpdateNotificationCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>