GET staffmembers/{userIdentifier}/center/students/encounterNoShow
Returns list of lasts encounters for each student for concrete center with status 'no show'
Authorization
Access to this endpoint is granted if all following conditions are true:
- Authenticated user matches identifier given in "userIdentifier, studentIdentifier" uri parameter.
- Authenticated user who is either StaffMember
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userIdentifier |
user's identifier |
PearsonEnglish.LearningServices.Business.Helpers.UserIdentifier |
Required |
Body Parameters
None.
Response Information
Resource Description
List of lasts encounters for each student for concrete center with status 'no show'
Collection of PearsonEnglish.LearningServices.Core.Models.Views.EncounterNoShowViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| SsdsUserId | string |
None. |
|
| ContentItemResultId | globally unique identifier |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| UnitNumber | integer |
None. |
|
| DateOfEncounter | date |
None. |
|
| TeacherFullName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserId": "4ddd5b03-dbcf-4bc8-9db6-a89ff40332e5",
"SsdsUserId": "sample string 2",
"ContentItemResultId": "fd00db61-6f9c-45be-b10e-5287f7f8f6d1",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"UnitNumber": 6,
"DateOfEncounter": "2026-02-07T11:19:47.5859843+00:00",
"TeacherFullName": "sample string 8"
},
{
"UserId": "4ddd5b03-dbcf-4bc8-9db6-a89ff40332e5",
"SsdsUserId": "sample string 2",
"ContentItemResultId": "fd00db61-6f9c-45be-b10e-5287f7f8f6d1",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"UnitNumber": 6,
"DateOfEncounter": "2026-02-07T11:19:47.5859843+00:00",
"TeacherFullName": "sample string 8"
}
]