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": "e6b143e5-a944-4fe7-8c5b-8d9569921ed4",
"StudentId": "5f480a0b-06a9-4da0-9459-00c18e542338",
"ReporterId": "797e6d2d-c712-4a2d-abe5-1f3da2839e02",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-03-07T02:40:38.1870625+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "4016f04f-6e86-46c0-a859-4024b32504f3",
"Name": "sample string 2"
}
},
{
"Id": "e6b143e5-a944-4fe7-8c5b-8d9569921ed4",
"StudentId": "5f480a0b-06a9-4da0-9459-00c18e542338",
"ReporterId": "797e6d2d-c712-4a2d-abe5-1f3da2839e02",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-03-07T02:40:38.1870625+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "4016f04f-6e86-46c0-a859-4024b32504f3",
"Name": "sample string 2"
}
}
]