POST 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
PearsonEnglish.LearningServices.Wse.Models.WaitingStudentParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| UnitNumber | integer |
None. |
|
| ClassType | PearsonEnglish.LearningServices.Core.Models.Enums.ClassTypes |
None. |
|
| StudentId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UnitNumber": 1,
"ClassType": 0,
"StudentId": "4a193787-3739-4caa-a7f2-dec71e110b61"
}
Response Information
Resource Description
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": "353a6f1c-f11f-4377-ac54-7349d1ab2ead",
"UserId": "fcf6e2ec-aaf9-4ad6-bf1f-5e44b183d655",
"StudentFullName": "sample string 3",
"StudentCode": "sample string 4",
"CategoryCode": "sample string 5",
"DateAdded": "2025-12-08T04:13:14.2385969+00:00",
"ClassType": 0,
"PhotoUris": {
"Small": "sample string 1"
}
}