GET api/StudentCourseStudyPlan/GetStudentAdditionalStudyDays?registrationId={registrationId}
This method used to get all the available additional days for the given registration id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| registrationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentAdditionalStudyDays| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentAdditionalStudyDayId |
Gets or sets the StudentAdditionalStudyDayId. This is the primary key value of 'StudentAdditionalStudyDays' table. |
integer |
None. |
| RegistrationId |
Gets or sets the registration Id. |
integer |
None. |
| StartDate |
Gets or sets the date on which user can spend study hours |
date |
None. |
| ScheduledHours |
Gets or sets the hours that student can spend on particular date. |
decimal number |
None. |
| IsRemoved | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StudentAdditionalStudyDayId": 1,
"RegistrationId": 2,
"StartDate": "2026-04-02T23:45:18.6807578-04:00",
"ScheduledHours": 4.0,
"IsRemoved": true
},
{
"StudentAdditionalStudyDayId": 1,
"RegistrationId": 2,
"StartDate": "2026-04-02T23:45:18.6807578-04:00",
"ScheduledHours": 4.0,
"IsRemoved": true
}
]