GET restapi/personal/notifications/v2?UseNewerThan={UseNewerThan}&FromId={FromId}&PageIndex={PageIndex}&PageSize={PageSize}

Get personal notifications (read and unread).

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UseNewerThan

boolean

None.

FromId

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

EntityListOfItslearning.RestApi.Entities.Notification
NameDescriptionTypeAdditional information
EntityArray

Collection of Itslearning.RestApi.Entities.Notification

None.

Total

integer

None.

CurrentPageIndex

integer

None.

PageSize

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "EntityArray": [
    {
      "NotificationId": 1,
      "Text": "sample string 2",
      "PublishedDate": "2025-06-19T06:11:54Z",
      "PublishedBy": {
        "PersonId": 1,
        "FirstName": "sample string 2",
        "LastName": "sample string 3",
        "FullName": "sample string 4",
        "ProfileUrl": "sample string 5",
        "AdditionalInfo": "sample string 6",
        "ProfileImageUrl": "sample string 7",
        "ProfileImageUrlSmall": "sample string 8"
      },
      "Type": "Unknown",
      "Url": "sample string 4",
      "ContentUrl": "sample string 5",
      "IsRead": true,
      "IsAnonymous": true
    },
    {
      "NotificationId": 1,
      "Text": "sample string 2",
      "PublishedDate": "2025-06-19T06:11:54Z",
      "PublishedBy": {
        "PersonId": 1,
        "FirstName": "sample string 2",
        "LastName": "sample string 3",
        "FullName": "sample string 4",
        "ProfileUrl": "sample string 5",
        "AdditionalInfo": "sample string 6",
        "ProfileImageUrl": "sample string 7",
        "ProfileImageUrlSmall": "sample string 8"
      },
      "Type": "Unknown",
      "Url": "sample string 4",
      "ContentUrl": "sample string 5",
      "IsRead": true,
      "IsAnonymous": true
    }
  ],
  "Total": 1,
  "CurrentPageIndex": 2,
  "PageSize": 3
}

application/xml, text/xml

Sample:
<EntityList xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CurrentPageIndex>2</CurrentPageIndex>
  <EntityArray>
    <Notification>
      <ContentUrl>sample string 5</ContentUrl>
      <IsAnonymous>true</IsAnonymous>
      <IsRead>true</IsRead>
      <NotificationId>1</NotificationId>
      <PublishedBy>
        <AdditionalInfo>sample string 6</AdditionalInfo>
        <FirstName>sample string 2</FirstName>
        <FullName>sample string 4</FullName>
        <LastName>sample string 3</LastName>
        <PersonId>1</PersonId>
        <ProfileImageUrl>sample string 7</ProfileImageUrl>
        <ProfileImageUrlSmall>sample string 8</ProfileImageUrlSmall>
        <ProfileUrl>sample string 5</ProfileUrl>
      </PublishedBy>
      <PublishedDate>2025-06-19T06:11:54Z</PublishedDate>
      <Text>sample string 2</Text>
      <Type>Unknown</Type>
      <Url>sample string 4</Url>
    </Notification>
    <Notification>
      <ContentUrl>sample string 5</ContentUrl>
      <IsAnonymous>true</IsAnonymous>
      <IsRead>true</IsRead>
      <NotificationId>1</NotificationId>
      <PublishedBy>
        <AdditionalInfo>sample string 6</AdditionalInfo>
        <FirstName>sample string 2</FirstName>
        <FullName>sample string 4</FullName>
        <LastName>sample string 3</LastName>
        <PersonId>1</PersonId>
        <ProfileImageUrl>sample string 7</ProfileImageUrl>
        <ProfileImageUrlSmall>sample string 8</ProfileImageUrlSmall>
        <ProfileUrl>sample string 5</ProfileUrl>
      </PublishedBy>
      <PublishedDate>2025-06-19T06:11:54Z</PublishedDate>
      <Text>sample string 2</Text>
      <Type>Unknown</Type>
      <Url>sample string 4</Url>
    </Notification>
  </EntityArray>
  <PageSize>3</PageSize>
  <Total>1</Total>
</EntityList>