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
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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": "65a29f36-f36d-4f88-951e-9d2a9f98e6d2",
"StudentId": "2cf5b272-6d2e-4c55-8d74-381b5423ca74",
"ReporterId": "c7125342-148f-4d5e-b310-ad9bbcf26209",
"ReporterFullName": "sample string 4",
"LocalDate": "2025-12-11T02:38:13.7534517+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "dbbd1632-1d4b-4f7f-9b3a-68e99a985215",
"Name": "sample string 2"
}
},
{
"Id": "65a29f36-f36d-4f88-951e-9d2a9f98e6d2",
"StudentId": "2cf5b272-6d2e-4c55-8d74-381b5423ca74",
"ReporterId": "c7125342-148f-4d5e-b310-ad9bbcf26209",
"ReporterFullName": "sample string 4",
"LocalDate": "2025-12-11T02:38:13.7534517+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "dbbd1632-1d4b-4f7f-9b3a-68e99a985215",
"Name": "sample string 2"
}
}
]