class ZendeskAPI::Organization

Public Class Methods

cbp_path_regexes() click to toggle source
# File lib/zendesk_api/resources.rb, line 216
def self.cbp_path_regexes
  [/^organizations$/]
end
incremental_export(client, start_time) click to toggle source

Gets a incremental export of organizations from the start_time until now. @param [Client] client The {Client} object to be used @param [Integer] start_time The start_time parameter @return [Collection] Collection of {Organization}

# File lib/zendesk_api/resources.rb, line 212
def self.incremental_export(client, start_time)
  ZendeskAPI::Collection.new(client, self, :path => "incremental/organizations?start_time=#{start_time.to_i}")
end