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": "387a4d31-7ff9-495a-9f51-a00f5aebe831",
"StudentId": "f376c3af-1b8f-46a0-a997-1156938c00f0",
"ReporterId": "2527a283-28f6-4b7c-b2c9-55c8b75e53b0",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-05-14T13:10:41.6021+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "fd776bf9-6535-4b7f-acaa-713ddfba4df3",
"Name": "sample string 2"
}
},
{
"Id": "387a4d31-7ff9-495a-9f51-a00f5aebe831",
"StudentId": "f376c3af-1b8f-46a0-a997-1156938c00f0",
"ReporterId": "2527a283-28f6-4b7c-b2c9-55c8b75e53b0",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-05-14T13:10:41.6021+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "fd776bf9-6535-4b7f-acaa-713ddfba4df3",
"Name": "sample string 2"
}
}
]