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

NameDescriptionTypeAdditional information
centerId

globally unique identifier

Required

Body Parameters

PearsonEnglish.LearningServices.Wse.Models.WaitingStudentParameters
NameDescriptionTypeAdditional 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": "9fc0ad33-c50a-4bc6-b422-641ce04c8b2e"
}

Response Information

Resource Description

PearsonEnglish.LearningServices.Wse.Models.Views.WaitingStudentViewModel
NameDescriptionTypeAdditional 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": "c220b63d-f414-43ac-ad29-09e9f563b04e",
  "UserId": "c72902d4-59b8-4f4c-9abb-6e6eb238e79e",
  "StudentFullName": "sample string 3",
  "StudentCode": "sample string 4",
  "CategoryCode": "sample string 5",
  "DateAdded": "2026-03-07T02:41:51.4492944+00:00",
  "ClassType": 0,
  "PhotoUris": {
    "Small": "sample string 1"
  }
}