POST api/Users/GetDashBoardNotifications

Request Information

URI Parameters

None.

Body Parameters

GetDashBoardNotificationsBy
NameDescriptionTypeAdditional information
UserID

integer

None.

UserProfileID

integer

None.

NotificationStatus

string

None.

FromDate

date

None.

ToDate

date

None.

GroupID

string

None.

IsFilterApplied

boolean

None.

Page

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "UserProfileID": 1,
  "NotificationStatus": "sample string 1",
  "FromDate": "2026-04-06T21:33:16.8622646-05:00",
  "ToDate": "2026-04-06T21:33:16.8622646-05:00",
  "GroupID": "sample string 2",
  "IsFilterApplied": true,
  "Page": 4,
  "PageSize": 5
}

application/xml, text/xml

Sample:
<GetDashBoardNotificationsBy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <FromDate>2026-04-06T21:33:16.8622646-05:00</FromDate>
  <GroupID>sample string 2</GroupID>
  <IsFilterApplied>true</IsFilterApplied>
  <NotificationStatus>sample string 1</NotificationStatus>
  <Page>4</Page>
  <PageSize>5</PageSize>
  <ToDate>2026-04-06T21:33:16.8622646-05:00</ToDate>
  <UserID>1</UserID>
  <UserProfileID>1</UserProfileID>
</GetDashBoardNotificationsBy>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>