class Internal::Pans::NotificationService < Internal::ApplicationService
  def initialize(school, pan_recipient_id)
    @school = school
    @id = pan_recipient_id
  end

  def call
    RestClient.patch(endpoint, {}.to_json, headers)
  rescue
  end

  private
    def endpoint
      "#{base_url}/PanRecipient/#{@id}"
    end
end
