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": "09d6a22d-005f-4c95-8652-4294deb3e3ed", "Id": "68a151d5-d98a-4b29-96e8-dd496618969a", "AccountId": "5c56dd46-9eef-4ad5-bf3b-8c7808d9651e", "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>5c56dd46-9eef-4ad5-bf3b-8c7808d9651e</AccountId> <AccountName>sample string 3</AccountName> <Id>68a151d5-d98a-4b29-96e8-dd496618969a</Id> <Message>sample string 5</Message> <NotificationImage>sample string 6</NotificationImage> <Title>sample string 4</Title> <UserId>09d6a22d-005f-4c95-8652-4294deb3e3ed</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>