POST api/discipline/save-timetable-planning

Request Information

URI Parameters

None.

Body Parameters

TimetablePlanningSaveRequest
NameDescriptionTypeAdditional information
SlotId

integer

None.

Discipline_Id

integer

None.

ClassId

integer

None.

DivId

integer

None.

Day

string

None.

DayNumber

integer

None.

FromTime

date

None.

ToTime

date

None.

LectureNo

integer

None.

IsRecess

boolean

None.

SchoolId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SlotId": 1,
  "Discipline_Id": 2,
  "ClassId": 3,
  "DivId": 4,
  "Day": "sample string 5",
  "DayNumber": 6,
  "FromTime": "2026-05-20T03:42:32.4709233+05:30",
  "ToTime": "2026-05-20T03:42:32.4709233+05:30",
  "LectureNo": 9,
  "IsRecess": true,
  "SchoolId": 10
}

application/xml, text/xml

Sample:
<TimetablePlanningSaveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoapToRestAPI.Controllers">
  <ClassId>3</ClassId>
  <Day>sample string 5</Day>
  <DayNumber>6</DayNumber>
  <Discipline_Id>2</Discipline_Id>
  <DivId>4</DivId>
  <FromTime>2026-05-20T03:42:32.4709233+05:30</FromTime>
  <IsRecess>true</IsRecess>
  <LectureNo>9</LectureNo>
  <SchoolId>10</SchoolId>
  <SlotId>1</SlotId>
  <ToTime>2026-05-20T03:42:32.4709233+05:30</ToTime>
</TimetablePlanningSaveRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.