GET restapi/personal/notifications/v1?PageIndex={PageIndex}&PageSize={PageSize}
Get personal notifications (read and unread). Obsolete. Use v2 instead.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
PageIndex | integer |
None. |
|
PageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
EntityListOfItslearning.RestApi.Entities.NotificationName | Description | Type | Additional 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-18T07:35:06Z", "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-18T07:35:06Z", "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-18T07:35:06Z</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-18T07:35:06Z</PublishedDate> <Text>sample string 2</Text> <Type>Unknown</Type> <Url>sample string 4</Url> </Notification> </EntityArray> <PageSize>3</PageSize> <Total>1</Total> </EntityList>