module Closeio::Client::IntegrationLink
Public Instance Methods
create_integration_link(options = {})
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 12 def create_integration_link(options = {}) post(integration_link_path, options) end
delete_integration_link(id)
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 20 def delete_integration_link(id) delete("#{integration_link_path}#{id}/") end
find_integration_link(id)
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 8 def find_integration_link(id) get("#{integration_link_path}#{id}/") end
list_integration_links()
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 4 def list_integration_links get(integration_link_path) end
update_integration_link(id, options = {})
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 16 def update_integration_link(id, options = {}) put("#{integration_link_path}#{id}/", options) end
Private Instance Methods
integration_link_path()
click to toggle source
# File lib/closeio/resources/integration_link.rb, line 26 def integration_link_path 'integration_link/' end