GET restapi/personal/courses/v1?PageIndex={PageIndex}&PageSize={PageSize}
Gets the list of courses. BUG: This endpoint returns only favourite courses 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
This method return a collection of entity .
EntityListOfItslearning.RestApi.Entities.PersonCourseName | Description | Type | Additional information |
---|---|---|---|
EntityArray | Collection of Itslearning.RestApi.Entities.PersonCourse |
None. |
|
Total | integer |
None. |
|
CurrentPageIndex | integer |
None. |
|
PageSize | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "EntityArray": [ { "LastUpdatedUtc": "2025-06-25T14:40:37Z", "NewNotificationsCount": 1, "NewBulletinsCount": 2, "Url": "sample string 3", "HasAdminPermissions": true, "HasStudentPermissions": true, "CourseId": 6, "Title": "sample string 7", "FriendlyName": "sample string 8", "CourseColor": "sample string 9", "CourseFillColor": "sample string 10", "CourseCode": "sample string 11" }, { "LastUpdatedUtc": "2025-06-25T14:40:37Z", "NewNotificationsCount": 1, "NewBulletinsCount": 2, "Url": "sample string 3", "HasAdminPermissions": true, "HasStudentPermissions": true, "CourseId": 6, "Title": "sample string 7", "FriendlyName": "sample string 8", "CourseColor": "sample string 9", "CourseFillColor": "sample string 10", "CourseCode": "sample string 11" } ], "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> <PersonCourse> <CourseCode>sample string 11</CourseCode> <CourseColor>sample string 9</CourseColor> <CourseFillColor>sample string 10</CourseFillColor> <CourseId>6</CourseId> <FriendlyName>sample string 8</FriendlyName> <Title>sample string 7</Title> <HasAdminPermissions>true</HasAdminPermissions> <HasStudentPermissions>true</HasStudentPermissions> <LastUpdatedUtc>2025-06-25T14:40:37Z</LastUpdatedUtc> <NewBulletinsCount>2</NewBulletinsCount> <NewNotificationsCount>1</NewNotificationsCount> <Url>sample string 3</Url> </PersonCourse> <PersonCourse> <CourseCode>sample string 11</CourseCode> <CourseColor>sample string 9</CourseColor> <CourseFillColor>sample string 10</CourseFillColor> <CourseId>6</CourseId> <FriendlyName>sample string 8</FriendlyName> <Title>sample string 7</Title> <HasAdminPermissions>true</HasAdminPermissions> <HasStudentPermissions>true</HasStudentPermissions> <LastUpdatedUtc>2025-06-25T14:40:37Z</LastUpdatedUtc> <NewBulletinsCount>2</NewBulletinsCount> <NewNotificationsCount>1</NewNotificationsCount> <Url>sample string 3</Url> </PersonCourse> </EntityArray> <PageSize>3</PageSize> <Total>1</Total> </EntityList>