| HTTP Method | Route | Action Name | Parameters | Return Type |
|---|---|---|---|---|
| DELETE |
api/notification/{id}
|
Delete |
id
(Query)
|
Task<IActionResult>
|
| GET |
api/notification/{id}
|
GetById |
id
(Query)
|
Task<IActionResult>
|
| PUT |
api/notification/{id}
|
Update |
id
(Query)
notification
(Body)
|
Task<IActionResult>
|
| POST |
api/notification/Create
|
Create |
notification
(Body)
|
Task<IActionResult>
|
| GET |
api/notification/danger-broadcasts
|
GetDangerBroadcasts | None |
Task<IActionResult>
|
| GET |
api/notification/GetAll
|
GetAll | None |
Task<IActionResult>
|
| PUT |
api/notification/mark-seen/{id}
|
MarkAsSeen |
id
(Query)
|
Task<IActionResult>
|
| GET |
api/notification/unseen/{shareholderId}
|
GetUnseenByShareholder |
shareholderId
(Query)
|
Task<IActionResult>
|
JS_Loading