GET followUpActivities/{followUpActivityId}
Returns follow up activity.
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 a student who is assigned to follow up activity specified by "followUpActivityId" uri parameter or by content of request.
- Authenticated user who is either StaffMember
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| followUpActivityId |
Follow up activity id. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Follow up activity.
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": "a643acd6-9e63-47dd-97da-befebfec21c7",
"StudentId": "59bba51b-5078-4c7e-8f57-20203d2e9ba4",
"ReporterId": "1a7ea900-e597-431a-90a5-05878fd41449",
"ReporterFullName": "sample string 4",
"LocalDate": "2025-11-09T07:41:18.8089178+00:00",
"Result": "sample string 6",
"HasReachedStudent": true,
"StaffMemberPhotoUris": {
"Small": "sample string 1"
},
"FollowUpActivityType": {
"Id": "488534d2-659d-42df-90e4-18b2fad502e5",
"Name": "sample string 2"
}
}