GET api/configuration/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Configuration
NameDescriptionTypeAdditional information
Id

integer

None.

Semester

string

None.

SchoolYear

string

None.

StartEnrollment

date

None.

EndEnrollment

date

None.

Department_Id

integer

None.

OfficiallyDroppedStartDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "semester": "sample string 2",
  "schoolYear": "sample string 3",
  "startEnrollment": "2024-09-20T02:09:08.339469+08:00",
  "endEnrollment": "2024-09-20T02:09:08.339469+08:00",
  "department_Id": 6,
  "officiallyDroppedStartDate": "2024-09-20T02:09:08.339469+08:00"
}

text/html

Sample:
{"id":1,"semester":"sample string 2","schoolYear":"sample string 3","startEnrollment":"2024-09-20T02:09:08.339469+08:00","endEnrollment":"2024-09-20T02:09:08.339469+08:00","department_Id":6,"officiallyDroppedStartDate":"2024-09-20T02:09:08.339469+08:00"}

application/xml, text/xml

Sample:
<Configuration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Department_Id>6</Department_Id>
  <EndEnrollment>2024-09-20T02:09:08.339469+08:00</EndEnrollment>
  <Id>1</Id>
  <OfficiallyDroppedStartDate>2024-09-20T02:09:08.339469+08:00</OfficiallyDroppedStartDate>
  <SchoolYear>sample string 3</SchoolYear>
  <Semester>sample string 2</Semester>
  <StartEnrollment>2024-09-20T02:09:08.339469+08:00</StartEnrollment>
</Configuration>