closeio icon indicating copy to clipboard operation
closeio copied to clipboard

A Ruby wrapper for the Close.io API

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

Hi there, We are using closeio gem for a few months. After upgrading Faraday, we have warnings: ``` >> CloseServices::CreateNote.call(close_lead_id: "XXXX", note: "dededea") WARNING: `Faraday::Connection#basic_auth` is deprecated; it will be...

Hi! I noticed that this gem has a resource for [accessing `email_account`](https://github.com/taylorbrooks/closeio/blob/c53b8a717a0fd55e579672753ebe59a6fb7a3840/lib/closeio/resources/email_account.rb#L5) on the api, and I can also see some traffic on that endpoint from this gem. Would it...

I'm struggling to find a way to update custom fields for a contact (updating custom fields for leads works ok), I tried the following options. Is this possible? If so,...

The problem exists b/c of apostrophe symbols (instead of quotation) when working with params. See [related PR](https://github.com/taylorbrooks/closeio/pull/61).

Because of this line https://github.com/taylorbrooks/closeio/blob/master/lib/closeio/client.rb#L68 result returned from `paginate: true` call will have symbolic keys, rather than strings. It leads to "undefined method for NilClass" kind of exceptions. My proposal...

Sometime in the last few days search queries such as the following have stopped returning any results for me: ``` client.list_leads(email: "[email protected]") # RESPONSE: {"has_more"=>false, "total_results"=>0, "data"=>[]} ``` Other queries...

I want to be able to make a leads_list with something like *lead_status:Potential lead_status:"Bad Fit" *. i.e. 2 words for one search field. IS this possible right now? Also, is...

A query to find/filter contacts returns the full contact set. It looks like the params are ignored, not utilized https://github.com/taylorbrooks/closeio/blob/4027ccadaf25a607337a311c9ef774f210b98ead/lib/closeio/resources/contact.rb#L4-L6 Is there a reason for this?

What's the syntax for passing sort options? https://developer.close.com/resources/advanced-filtering/#sorting I'm trying this right now... ``` @client.list_opportunities( { status_type: 'active', sort: [ direction: 'asc', field: { object_type: 'opportunity', field_name: 'lead_name' } ]...