PUT api/notification/UpdateNotification
Request Information
URI Parameters
None.
Body Parameters
NotificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
None. |
|
| Body | string |
None. |
|
| TargetLink | string |
None. |
|
| Logo | string |
None. |
|
| SendDate | date |
None. |
|
| IsSent | boolean |
None. |
|
| SentAt | date |
None. |
|
| CreatedAt | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"Body": "sample string 3",
"TargetLink": "sample string 4",
"Logo": "sample string 5",
"SendDate": "2026-05-06T18:59:07.1785773+00:00",
"IsSent": true,
"SentAt": "2026-05-06T18:59:07.1785773+00:00",
"CreatedAt": "2026-05-06T18:59:07.1785773+00:00"
}
application/xml, text/xml
Sample:
<NotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/dalel_kuwait_Common.Models"> <Body>sample string 3</Body> <CreatedAt>2026-05-06T18:59:07.1785773+00:00</CreatedAt> <Id>1</Id> <IsSent>true</IsSent> <Logo>sample string 5</Logo> <SendDate>2026-05-06T18:59:07.1785773+00:00</SendDate> <SentAt>2026-05-06T18:59:07.1785773+00:00</SentAt> <TargetLink>sample string 4</TargetLink> <Title>sample string 2</Title> </NotificationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.