Method: BaseCRM::CallOutcomesService#where
- Defined in:
- lib/basecrm/services/call_outcomes_service.rb
#where(options = {}) ⇒ Array<CallOutcome>
Retrieve all call outcomes
get ‘/call_outcomes’
Returns all call outcomes available to the user, according to the parameters provided Call outcomes are always sorted by id in ascending order
30 31 32 33 34 |
# File 'lib/basecrm/services/call_outcomes_service.rb', line 30 def where( = {}) _, _, root = @client.get("/call_outcomes", ) root[:items].map{ |item| CallOutcome.new(item[:data]) } end |