GET
api/v1/get-admin-notifications?pageNo={pageNo}&limit={limit}&q={q}&clientId={clientId}&sellerId={sellerId}&totalRecordsOut={totalRecordsOut}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
pageNo | integer |
Required |
|
limit | integer |
Required |
|
q | string |
Required |
|
clientId | integer |
Required |
|
sellerId | integer |
Required |
|
totalRecordsOut | integer |
Required |
Response Information
Description:
Return type: AdminNotificationModel
Response Formats
application/json, text/json
{ "AdminNotificationList": [ { "AdminNotificationId": "sample string 1", "NotificationMessage": "sample string 2", "AdminMemberId": 1, "CreatedOn": "2025-06-18T12:55:17.2641747+00:00", "ClientId": 1, "IsRead": true, "User": "sample string 4", "RequestFrom": "sample string 5", "CustName": "sample string 6", "RowNum": 7 }, { "AdminNotificationId": "sample string 1", "NotificationMessage": "sample string 2", "AdminMemberId": 1, "CreatedOn": "2025-06-18T12:55:17.2641747+00:00", "ClientId": 1, "IsRead": true, "User": "sample string 4", "RequestFrom": "sample string 5", "CustName": "sample string 6", "RowNum": 7 } ], "TotalRecords": 1, "NotificationsCount": 2 }
text/html
{"AdminNotificationList":[{"AdminNotificationId":"sample string 1","NotificationMessage":"sample string 2","AdminMemberId":1,"CreatedOn":"2025-06-18T12:55:17.2641747+00:00","ClientId":1,"IsRead":true,"User":"sample string 4","RequestFrom":"sample string 5","CustName":"sample string 6","RowNum":7},{"AdminNotificationId":"sample string 1","NotificationMessage":"sample string 2","AdminMemberId":1,"CreatedOn":"2025-06-18T12:55:17.2641747+00:00","ClientId":1,"IsRead":true,"User":"sample string 4","RequestFrom":"sample string 5","CustName":"sample string 6","RowNum":7}],"TotalRecords":1,"NotificationsCount":2}
application/xml, text/xml
<AdminNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Notification"> <AdminNotificationList> <AdminNotification> <AdminMemberId>1</AdminMemberId> <AdminNotificationId>sample string 1</AdminNotificationId> <ClientId>1</ClientId> <CreatedOn>2025-06-18T12:55:17.2641747+00:00</CreatedOn> <CustName>sample string 6</CustName> <IsRead>true</IsRead> <NotificationMessage>sample string 2</NotificationMessage> <RequestFrom>sample string 5</RequestFrom> <RowNum>7</RowNum> <User>sample string 4</User> </AdminNotification> <AdminNotification> <AdminMemberId>1</AdminMemberId> <AdminNotificationId>sample string 1</AdminNotificationId> <ClientId>1</ClientId> <CreatedOn>2025-06-18T12:55:17.2641747+00:00</CreatedOn> <CustName>sample string 6</CustName> <IsRead>true</IsRead> <NotificationMessage>sample string 2</NotificationMessage> <RequestFrom>sample string 5</RequestFrom> <RowNum>7</RowNum> <User>sample string 4</User> </AdminNotification> </AdminNotificationList> <NotificationsCount>2</NotificationsCount> <TotalRecords>1</TotalRecords> </AdminNotificationModel>