GET api/{version}/StudentCourseStudyPlan/GetStudentAdditionalStudyDays?registrationId={registrationId}

This method used to get all the available additional days for the given registration id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
registrationId

integer

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of StudentAdditionalStudyDays
NameDescriptionTypeAdditional 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:44:59.5556536-04:00",
    "ScheduledHours": 4.0,
    "IsRemoved": true
  },
  {
    "StudentAdditionalStudyDayId": 1,
    "RegistrationId": 2,
    "StartDate": "2026-04-02T23:44:59.5556536-04:00",
    "ScheduledHours": 4.0,
    "IsRemoved": true
  }
]