POST api/StudentCourseStudyPlan/UpdateStudyPlanAdditionalHours
Used to update the additional hours
Request Information
URI Parameters
None.
Body Parameters
StudentCourseStudyPlanCalender| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentCourseStudyPlanId |
Gets or sets the StudentCourseStudyPlanId value. This is the primary key vakue of "StudentCourseStudyPlan" table. |
integer |
None. |
| RegistrationId |
Gets or sets the RegistrationId value for study plan |
integer |
None. |
| ScheduleDate |
Gets or sets the scheduled date |
date |
None. |
| ScheduledDurationPerDay |
Gets or sets the scheduled hours for a scheduled date |
integer |
None. |
| ScheduledDurationPerSubject |
Gets or sets the scheduled hours for subject |
integer |
None. |
| SubjectId |
Gets or sets the subject Id scheduled for a scheduled date |
integer |
None. |
| SubjectName |
Gets or sets the subject name |
string |
None. |
| IsReviewTime |
Gets or sets whether scheduled date is for review |
boolean |
None. |
| IsBlockoutDay |
Gets or sets flag whether the scheduled date is a blackout day |
boolean |
None. |
| AdditionalComments |
Gets or sets additional comments if any |
string |
None. |
| ScheduledHours |
Gets or sets the scheduled hours |
decimal number |
None. |
| AllowDelete | boolean |
None. |
|
| StatusMessage | string |
None. |
|
| StudentCourseReviewSettingId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"StudentCourseStudyPlanId": 1,
"RegistrationId": 2,
"ScheduleDate": "2026-04-02T23:45:43.6997588-04:00",
"ScheduledDurationPerDay": 4,
"ScheduledDurationPerSubject": 5,
"SubjectId": 6,
"SubjectName": "sample string 7",
"IsReviewTime": true,
"IsBlockoutDay": true,
"AdditionalComments": "sample string 10",
"ScheduledHours": 11.0,
"AllowDelete": true,
"StatusMessage": "sample string 13",
"StudentCourseReviewSettingId": 14
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>