module AeriesApi::Client::StudentGroups

Public Instance Methods

student_groups(school_code:) click to toggle source
# File lib/aeries-api/client/student_groups.rb, line 4
def student_groups(school_code:)
  response = self.class.get("/schools/#{school_code}/studentgroups")
  @error_handler.handle_error(response)
  mash_and_underscore_keys(response.parsed_response)
end