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": "0ea853ac-86ff-4301-bf4b-72e5c701778a", "Id": "24ea11c9-a965-47c7-ba45-58403c762147", "AccountId": "f47aa2ec-cdf5-4473-b63c-13ee747b82ff", "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>f47aa2ec-cdf5-4473-b63c-13ee747b82ff</AccountId> <AccountName>sample string 3</AccountName> <Id>24ea11c9-a965-47c7-ba45-58403c762147</Id> <Message>sample string 5</Message> <NotificationImage>sample string 6</NotificationImage> <Title>sample string 4</Title> <UserId>0ea853ac-86ff-4301-bf4b-72e5c701778a</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>