GET api/studentenrollment/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StudentEnrollmentName | Description | Type | Additional 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. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "termId": 2, "studentId": 3, "subjId": 4, "sectCode": 5, "subjectStatus": 6, "enrolledBy": "sample string 7", "dateEnrolled": "2025-04-26T21:39:53.465114+08:00", "isOfficial": 9, "officialDropped": 10, "officialDroppedDate": "2025-04-26T21:39:53.465114+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":"2025-04-26T21:39:53.465114+08:00","isOfficial":9,"officialDropped":10,"officialDroppedDate":"2025-04-26T21:39:53.465114+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>2025-04-26T21:39:53.465114+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>2025-04-26T21:39:53.465114+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>