This function sends a GET request to the timetable student endpoint of the Semestry API and retrieves the timetable data for a specific student.

get_timetable_student(
  semestry,
  student_code,
  start = NULL,
  end = NULL,
  timeout = 30
)

Arguments

semestry

An authenticated Semestry object.

student_code

The student code to retrieve timetable data for.

start

Optional start date in YYYY-MM-DD format (10 characters).

end

Optional end date in YYYY-MM-DD format (10 characters).

timeout

The timeout duration for the GET request (default: 30 seconds).

Value

The retrieved timetable data for the specified student from the API.