POST api/Schedule/UpdateExtendedDaysForSession

Request Information

URI Parameters

None.

Body Parameters

ExtendedDaysModel
NameDescriptionTypeAdditional information
SessionId

integer

None.

ExtendedDays

integer

None.

ScheduleId

integer

None.

StudentId

integer

None.

CreatedBy

string

None.

CreatedOn

date

None.

UpdatedBy

string

None.

UpdatedOn

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SessionId": 1,
  "ExtendedDays": 2,
  "ScheduleId": 3,
  "StudentId": 4,
  "CreatedBy": "sample string 5",
  "CreatedOn": "2025-09-06T05:52:58.5553608+00:00",
  "UpdatedBy": "sample string 7",
  "UpdatedOn": 8
}

application/xml, text/xml

Sample:
<ExtendedDaysModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HLSClientPortal.Models">
  <CreatedBy>sample string 5</CreatedBy>
  <CreatedOn>2025-09-06T05:52:58.5553608+00:00</CreatedOn>
  <ExtendedDays>2</ExtendedDays>
  <ScheduleId>3</ScheduleId>
  <SessionId>1</SessionId>
  <StudentId>4</StudentId>
  <UpdatedBy>sample string 7</UpdatedBy>
  <UpdatedOn>8</UpdatedOn>
</ExtendedDaysModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ExtendedDaysModel'.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />