GET restapi/personal/tasks/followuptasks/v1?PageIndex={PageIndex}&PageSize={PageSize}

Gets the user's follow up tasks.

The list shows activities from favorite courses that have new or updated submissions/student work, or if the teacher needs to assess a submission/attempt. This will give the teacher an easy overview to see if there are updates, and to decide which to follow up next.

Supports paging. If paging is not used, it will use a default pageSize on pageIndex 0.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

List of FollowUpTask

EntityListOfItslearning.RestApi.Entities.FollowUpTask
NameDescriptionTypeAdditional information
EntityArray

Collection of Itslearning.RestApi.Entities.FollowUpTask

None.

Total

integer

None.

CurrentPageIndex

integer

None.

PageSize

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "EntityArray": [
    {
      "Title": "sample string 1",
      "LocationTitle": "sample string 2",
      "NumberOfNewOrUpdatedSubmissions": 3,
      "NumberOfSubmissionsToAssess": 4,
      "TotalNumberOfEvaluateSubmissions": 5,
      "Url": "sample string 6",
      "ContentUrl": "sample string 7",
      "IconUrl": "sample string 8",
      "ElementId": 9,
      "ElementType": "Unknown",
      "LearningToolId": 10
    },
    {
      "Title": "sample string 1",
      "LocationTitle": "sample string 2",
      "NumberOfNewOrUpdatedSubmissions": 3,
      "NumberOfSubmissionsToAssess": 4,
      "TotalNumberOfEvaluateSubmissions": 5,
      "Url": "sample string 6",
      "ContentUrl": "sample string 7",
      "IconUrl": "sample string 8",
      "ElementId": 9,
      "ElementType": "Unknown",
      "LearningToolId": 10
    }
  ],
  "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>
    <FollowUpTask>
      <ContentUrl>sample string 7</ContentUrl>
      <ElementId>9</ElementId>
      <ElementType>Unknown</ElementType>
      <IconUrl>sample string 8</IconUrl>
      <LearningToolId>10</LearningToolId>
      <LocationTitle>sample string 2</LocationTitle>
      <NumberOfNewOrUpdatedSubmissions>3</NumberOfNewOrUpdatedSubmissions>
      <NumberOfSubmissionsToAssess>4</NumberOfSubmissionsToAssess>
      <Title>sample string 1</Title>
      <TotalNumberOfEvaluateSubmissions>5</TotalNumberOfEvaluateSubmissions>
      <Url>sample string 6</Url>
    </FollowUpTask>
    <FollowUpTask>
      <ContentUrl>sample string 7</ContentUrl>
      <ElementId>9</ElementId>
      <ElementType>Unknown</ElementType>
      <IconUrl>sample string 8</IconUrl>
      <LearningToolId>10</LearningToolId>
      <LocationTitle>sample string 2</LocationTitle>
      <NumberOfNewOrUpdatedSubmissions>3</NumberOfNewOrUpdatedSubmissions>
      <NumberOfSubmissionsToAssess>4</NumberOfSubmissionsToAssess>
      <Title>sample string 1</Title>
      <TotalNumberOfEvaluateSubmissions>5</TotalNumberOfEvaluateSubmissions>
      <Url>sample string 6</Url>
    </FollowUpTask>
  </EntityArray>
  <PageSize>3</PageSize>
  <Total>1</Total>
</EntityList>