zoho_hub icon indicating copy to clipboard operation
zoho_hub copied to clipboard

Zoho CRM API V2 Wrapper

Results 10 zoho_hub issues
Sort by recently updated
recently updated
newest added

Hi, Zoho supports assignment rules which assign an account manager to a lead by e.g. round robin. Unfortunately, it seems like it is not enough to leave the owner property...

A small PR to handle the deletion of records in Zoho. Also, I add the `AuthenticationFailure` errors, not handled until now.

I have a need to use 'If-Modified-Since', and saw an opportunity to improve the where method as well. I'll write tests and docs if you think you'd merge. thanks for...

If the recursive argument is set to true, all records can be retrieved. ``` [tsukaby@tsukamac zoho_hub]% bin/console Refreshing token... [1] pry(main)> class Contact < ZohoHub::BaseRecord;attributes(:id, :email);end => [:id, :email] [2]...

The following code is very slow (because the PUT request is executed 200 times) ``` [tsukaby@tsukamac zoho_hub]% bin/console Refreshing token... [1] pry(main)> class Contact < ZohoHub::BaseRecord;attributes(:id, :email);end => [:id, :email]...

Strictly speaking we're using Zoho as an alternative data source for models that would typically be stored using `ActiveRecord`. This plugin has great promise of course but at present it...

Is there an issue with calling a `user` scope as Baserecord objects since they are not part of Zoho modules? I can call users successfully with `ZohoHub.connection.get('users')`, but not with...

bug

The Notifications module is not loaded by default. Is there anyway to include or is a bug? ``` > ZohoHub::Notifications (irb):17:in `': uninitialized constant ZohoHub::Notifications (NameError) ```

Hi there, thanks for the work on this gem! I've got myself a setup where I have 2 models, account and contact, and they're pretty much just blank except for...