module AeriesApi::Client::Contacts

Public Instance Methods

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