Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class UsersController < ApplicationController
  2.  
  3.   include ApiInfusionsoft
  4.  
  5.   def index
  6.     @users = User.all
  7.    
  8.     infuser = api_data_query(:Contact,1,0,{:Id=>3674}, ["Id", "FirstName", "LastName"])
  9.     print "\n infuser #{infuser.inspect}"
  10.  
  11.     respond_to do |format|
  12.       format.html # index.html.erb
  13.       format.xml  { render :xml => @users }
  14.     end
  15.   end
  16.  
  17.   # other methods rm'd for this example.
  18.  
  19. end