module Sukremore

To use the Sukremore::Client the first thing to do is call user_auth so that the client authenticates with SugarCRM. Once authenticated, the rest of the calls may be performed without authenticating again.

For more documentation on the SugarCRM Rest API check: xxx-crm.coditramuntana.com/service/v2/rest.php

Account Module fields


assigned_user_name modified_by_name created_by_name id name date_entered date_modified modified_user_id created_by description deleted assigned_user_id account_type industry annual_revenue phone_fax billing_address_street billing_address_city billing_address_state billing_address_postalcode billing_address_country rating phone_office phone_alternate website ownership employees ticker_symbol shipping_address_street shipping_address_city shipping_address_state shipping_address_postalcode shipping_address_country email1 parent_id sic_code parent_name campaign_id campaign_name cifra_negocio_c interes_en_prod_c currency_id

Main abstract class for all module specific classes.

Constants

VERSION

Public Instance Methods

logger() click to toggle source
# File lib/sukremore.rb, line 5
def logger
  if defined? Rails
    Rails.logger
  else
    Logger.new(STDOUT)
  end
end