PUT api/studentenrollment/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

StudentEnrollment
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

StudentId

integer

None.

SubjId

integer

None.

SectCode

integer

None.

SubjectStatus

integer

None.

EnrolledBy

string

String length: inclusive between 0 and 50

DateEnrolled

date

None.

isOfficial

integer

None.

OfficialDropped

integer

None.

OfficialDroppedDate

date

None.

OfficialDroppedBy

string

None.

RemarksComment

string

None.

Equivalent

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "termId": 2,
  "studentId": 3,
  "subjId": 4,
  "sectCode": 5,
  "subjectStatus": 6,
  "enrolledBy": "sample string 7",
  "dateEnrolled": "2024-09-20T01:49:34.5044353+08:00",
  "isOfficial": 9,
  "officialDropped": 10,
  "officialDroppedDate": "2024-09-20T01:49:34.5044353+08:00",
  "officialDroppedBy": "sample string 12",
  "remarksComment": "sample string 13",
  "equivalent": "sample string 14"
}

text/html

Sample:
{"id":1,"termId":2,"studentId":3,"subjId":4,"sectCode":5,"subjectStatus":6,"enrolledBy":"sample string 7","dateEnrolled":"2024-09-20T01:49:34.5044353+08:00","isOfficial":9,"officialDropped":10,"officialDroppedDate":"2024-09-20T01:49:34.5044353+08:00","officialDroppedBy":"sample string 12","remarksComment":"sample string 13","equivalent":"sample string 14"}

application/xml, text/xml

Sample:
<StudentEnrollment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <DateEnrolled>2024-09-20T01:49:34.5044353+08:00</DateEnrolled>
  <EnrolledBy>sample string 7</EnrolledBy>
  <Equivalent>sample string 14</Equivalent>
  <Id>1</Id>
  <OfficialDropped>10</OfficialDropped>
  <OfficialDroppedBy>sample string 12</OfficialDroppedBy>
  <OfficialDroppedDate>2024-09-20T01:49:34.5044353+08:00</OfficialDroppedDate>
  <RemarksComment>sample string 13</RemarksComment>
  <SectCode>5</SectCode>
  <StudentId>3</StudentId>
  <SubjId>4</SubjId>
  <SubjectStatus>6</SubjectStatus>
  <TermId>2</TermId>
  <isOfficial>9</isOfficial>
</StudentEnrollment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.