Module: ZendeskAPI::Read

Includes:
Rescue
Included in:
ReadResource, Resource
Defined in:
lib/zendesk_api/actions.rb

Instance Method Summary collapse

Instance Method Details

#find(client, options = {}) ⇒ Object

Finds a resource by an id and any options passed in. A custom path to search at can be passed into opts. It defaults to the Data.resource_name of the class.

Parameters:

  • client (Client)

    The Client object to be used

  • options (Hash) (defaults to: {})

    Any additional GET parameters to be added



63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/zendesk_api/actions.rb', line 63

def find(client, options = {})
  @client = client # so we can use client.logger in rescue

  raise "No :id given" unless options[:id] || options["id"]
  association = options.delete(:association) || Association.new(:class => self)

  response = client.connection.get(association.generate_path(options)) do |req|
    req.params = options
  end

  new(client, response.body[singular_resource_name])
end