basecrm-ruby
basecrm-ruby copied to clipboard
Base CRM API Client
Pretty simple code: `@base.deals.create name: lead.email, contact_id: contact.id, stage_id: stage_id, tags_joined_by_comma: 'vk-onboarding'` There's absolutely no documentation on how to add tags to deal, leads and contacts. I found `tags_joined_by_comma` in...
My biz team updates Deals with Notes quite frequently, but unfortunately it appears a note does not update the deal's `updated_at` value (e.g. a deal might be last updated May...
I tried to come up with a field name for a tag, and tried many options, e.g.: ``` ruby base.deals.where(contact_id: contact.id, tag_list: 'vk-onboarding') base.deals.where(contact_id: contact.id, tag: 'vk-onboarding') base.deals.where(contact_id: contact.id, tags:...
I'm working on trying to implement the fetch method into my ruby app, and it does fire, however when trying to run the execute script i get the following error...