GET restapi/personal/courses/v2?PageIndex={PageIndex}&PageSize={PageSize}&filter={filter}

Gets the list of courses.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

filter

Option filter .

Itsolutions.ItslUtils.Constants.ContentAreaFilterType

Default value is All

Body Parameters

None.

Response Information

Resource Description

This method return a collection of entity .

EntityListOfItslearning.RestApi.Entities.PersonCourse
NameDescriptionTypeAdditional 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": "2026-05-30T15:47:56Z",
      "NewNotificationsCount": 1,
      "NewBulletinsCount": 2,
      "Url": "sample string 3",
      "HasAdminPermissions": true,
      "HasStudentPermissions": true,
      "CourseFocus": 1,
      "TopicColumnName": "sample string 6",
      "CourseId": 7,
      "Title": "sample string 8",
      "FriendlyName": "sample string 9",
      "CourseColor": "sample string 10",
      "CourseFillColor": "sample string 11",
      "CourseCode": "sample string 12"
    },
    {
      "LastUpdatedUtc": "2026-05-30T15:47:56Z",
      "NewNotificationsCount": 1,
      "NewBulletinsCount": 2,
      "Url": "sample string 3",
      "HasAdminPermissions": true,
      "HasStudentPermissions": true,
      "CourseFocus": 1,
      "TopicColumnName": "sample string 6",
      "CourseId": 7,
      "Title": "sample string 8",
      "FriendlyName": "sample string 9",
      "CourseColor": "sample string 10",
      "CourseFillColor": "sample string 11",
      "CourseCode": "sample string 12"
    }
  ],
  "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 12</CourseCode>
      <CourseColor>sample string 10</CourseColor>
      <CourseFillColor>sample string 11</CourseFillColor>
      <CourseId>7</CourseId>
      <FriendlyName>sample string 9</FriendlyName>
      <Title>sample string 8</Title>
      <CourseFocus>Subject</CourseFocus>
      <HasAdminPermissions>true</HasAdminPermissions>
      <HasStudentPermissions>true</HasStudentPermissions>
      <LastUpdatedUtc>2026-05-30T15:47:56Z</LastUpdatedUtc>
      <NewBulletinsCount>2</NewBulletinsCount>
      <NewNotificationsCount>1</NewNotificationsCount>
      <TopicColumnName>sample string 6</TopicColumnName>
      <Url>sample string 3</Url>
    </PersonCourse>
    <PersonCourse>
      <CourseCode>sample string 12</CourseCode>
      <CourseColor>sample string 10</CourseColor>
      <CourseFillColor>sample string 11</CourseFillColor>
      <CourseId>7</CourseId>
      <FriendlyName>sample string 9</FriendlyName>
      <Title>sample string 8</Title>
      <CourseFocus>Subject</CourseFocus>
      <HasAdminPermissions>true</HasAdminPermissions>
      <HasStudentPermissions>true</HasStudentPermissions>
      <LastUpdatedUtc>2026-05-30T15:47:56Z</LastUpdatedUtc>
      <NewBulletinsCount>2</NewBulletinsCount>
      <NewNotificationsCount>1</NewNotificationsCount>
      <TopicColumnName>sample string 6</TopicColumnName>
      <Url>sample string 3</Url>
    </PersonCourse>
  </EntityArray>
  <PageSize>3</PageSize>
  <Total>1</Total>
</EntityList>