GET restapi/personal/courses/{courseId}/followuptasks/mobile/v1?PageIndex={PageIndex}&PageSize={PageSize}

Should be used only by mobile app. Gets follow-up tasks together with tasks related to assignments that do not require a digital action from a student. This is a temp solution that will be addressed in ITS-104591

Request Information

URI Parameters

NameDescriptionTypeAdditional information
courseId

integer

Required

PageIndex

integer

None.

PageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

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",
      "BrandIconUrl": "sample string 9",
      "ElementId": 10,
      "ElementType": "Unknown",
      "LearningToolId": 11
    },
    {
      "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",
      "BrandIconUrl": "sample string 9",
      "ElementId": 10,
      "ElementType": "Unknown",
      "LearningToolId": 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>
    <FollowUpTask>
      <BrandIconUrl>sample string 9</BrandIconUrl>
      <ContentUrl>sample string 7</ContentUrl>
      <ElementId>10</ElementId>
      <ElementType>Unknown</ElementType>
      <IconUrl>sample string 8</IconUrl>
      <LearningToolId>11</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>
      <BrandIconUrl>sample string 9</BrandIconUrl>
      <ContentUrl>sample string 7</ContentUrl>
      <ElementId>10</ElementId>
      <ElementType>Unknown</ElementType>
      <IconUrl>sample string 8</IconUrl>
      <LearningToolId>11</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>