Method: Workflows#get_workflows

Defined in:
lib/user/crm/workflows.rb

#get_workflows(options = nil) ⇒ Object

Get workflows.

Get a collection of workflows.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_user.get_workflows

Second Example

options = { sort: 'title', fields: 'title' }
@data = @mints_user.get_workflows(options)


20
21
22
# File 'lib/user/crm/workflows.rb', line 20

def get_workflows(options = nil)
  @client.raw('get', '/crm/workflows', options)
end