GET centers/{centerId}/waitingList
Authorization
Access to this endpoint is granted if all following conditions are true:
- Authenticated user who is either StaffMember
- Authenticated user belongs to center which matches identifier given in "centerId" uri parameter.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| centerId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PearsonEnglish.LearningServices.Wse.Models.Views.WaitingStudentViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| StudentFullName | string |
None. |
|
| StudentCode | string |
None. |
|
| CategoryCode | string |
None. |
|
| DateAdded | date |
None. |
|
| ClassType | PearsonEnglish.LearningServices.Core.Models.Enums.ClassTypes |
None. |
|
| PhotoUris | Dictionary of Nse.ServiceBus.DataContracts.ImageResolution [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "82ead853-16c1-4e5b-b008-b31e1c2c8930",
"UserId": "26dfa3e9-a614-46af-b907-43ba8dfe160a",
"StudentFullName": "sample string 3",
"StudentCode": "sample string 4",
"CategoryCode": "sample string 5",
"DateAdded": "2026-07-18T18:26:53.990682+00:00",
"ClassType": 0,
"PhotoUris": {
"Small": "sample string 1"
}
},
{
"Id": "82ead853-16c1-4e5b-b008-b31e1c2c8930",
"UserId": "26dfa3e9-a614-46af-b907-43ba8dfe160a",
"StudentFullName": "sample string 3",
"StudentCode": "sample string 4",
"CategoryCode": "sample string 5",
"DateAdded": "2026-07-18T18:26:53.990682+00:00",
"ClassType": 0,
"PhotoUris": {
"Small": "sample string 1"
}
}
]