POST api/NotificationApp/Action/GetNotificationByUser
Get Notifications By userid.
Request Information
URI Parameters
None.
Body Parameters
NotificationParamVM| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MessageVMOfIEnumerableOfNotificationAppVM| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| data | Collection of NotificationAppVM |
None. |
|
| total | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"data": [
{
"Id": 1,
"UserId": 1,
"LUAlertType": "sample string 2",
"LogDate": "2025-12-16T20:48:32.4802941Z",
"LUType": "sample string 3",
"RecordId": 4,
"IsArchived": true,
"IsRead": true,
"Message": "sample string 7",
"Status": "sample string 8",
"DealerName": "sample string 9"
},
{
"Id": 1,
"UserId": 1,
"LUAlertType": "sample string 2",
"LogDate": "2025-12-16T20:48:32.4802941Z",
"LUType": "sample string 3",
"RecordId": 4,
"IsArchived": true,
"IsRead": true,
"Message": "sample string 7",
"Status": "sample string 8",
"DealerName": "sample string 9"
}
],
"total": 3
}