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": "ab799136-2ed5-4d8c-bb5a-672cbab61965",
"StudentId": "bb223e95-c83c-478f-a132-37e75db8a6b9",
"ReporterId": "2dffc2cc-0a68-4ae7-86a3-7ece257908d6",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-02-09T16:18:46.9833452+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "19fd6f3e-59fd-4f40-8d09-bc6308860441",
"Name": "sample string 2"
}
},
{
"Id": "ab799136-2ed5-4d8c-bb5a-672cbab61965",
"StudentId": "bb223e95-c83c-478f-a132-37e75db8a6b9",
"ReporterId": "2dffc2cc-0a68-4ae7-86a3-7ece257908d6",
"ReporterFullName": "sample string 4",
"LocalDate": "2026-02-09T16:18:46.9833452+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "19fd6f3e-59fd-4f40-8d09-bc6308860441",
"Name": "sample string 2"
}
}
]