GET students/{studentIdentifier}/followUpActivities?Count={Count}&Offset={Offset}

Retrievs follow up activities related with student.

Authorization

Access to this endpoint is granted if all following conditions are true:

  • Authenticated user is a staff member and is assigned to the same center as a user who matches identifier given in "studentIdentifier" uri parameter.
  • Authenticated user who is either StaffMember

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studentIdentifier

Student identifier.

PearsonEnglish.LearningServices.Business.Helpers.UserIdentifier

Required

Count

integer

None.

Offset

integer

None.

Body Parameters

None.

Response Information

Resource Description

List of follow up activities.

Collection of PearsonEnglish.LearningServices.Core.Models.Views.FollowUpActivityViewModel
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

StudentId

globally unique identifier

None.

ReporterId

globally unique identifier

None.

ReporterFullName

string

None.

LocalDate

date

None.

Result

string

None.

HasReachedStudent

boolean

None.

StaffMemberPhotoUris

Dictionary of Nse.ServiceBus.DataContracts.ImageResolution [key] and string [value]

None.

FollowUpActivityType

PearsonEnglish.LearningServices.Core.Models.Views.FollowUpActivityTypeViewModel

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "d5840b3e-f363-4b78-98cf-7ec4d232294b",
    "StudentId": "f0fc01f1-a97f-42d1-b0d4-90e7fab583fa",
    "ReporterId": "c5e5856d-0778-409b-b489-c9e78f478911",
    "ReporterFullName": "sample string 4",
    "LocalDate": "2024-10-05T09:21:59.9410705+00:00",
    "Result": "sample string 6",
    "HasReachedStudent": true,
    "StaffMemberPhotoUris": {
      "Small": "sample string 1"
    },
    "FollowUpActivityType": {
      "Id": "ee1278a1-0e25-4019-8855-0376b97e0e28",
      "Name": "sample string 2"
    }
  },
  {
    "Id": "d5840b3e-f363-4b78-98cf-7ec4d232294b",
    "StudentId": "f0fc01f1-a97f-42d1-b0d4-90e7fab583fa",
    "ReporterId": "c5e5856d-0778-409b-b489-c9e78f478911",
    "ReporterFullName": "sample string 4",
    "LocalDate": "2024-10-05T09:21:59.9410705+00:00",
    "Result": "sample string 6",
    "HasReachedStudent": true,
    "StaffMemberPhotoUris": {
      "Small": "sample string 1"
    },
    "FollowUpActivityType": {
      "Id": "ee1278a1-0e25-4019-8855-0376b97e0e28",
      "Name": "sample string 2"
    }
  }
]