download   home   source


jeremy.deyoung@lunarfly.com's Gravatar   Jeremy DeYoung Dec 06, 2010 at 11:17 AM May 24, 2012 at 4:47 AM 1 2.6.4 Plugins 1153 224

FreshBooks RESTful Wrapper

FreshBooks RESTful Wrapper

Description

<cfscript>
   var freshbooks = getPlugin("freshbooks.freshbooks",true).init();
   freshbooks.setAPIURL("https://{SUB_DOMAIN_HERE}.freshbooks.com/api/2.1/xml-in");
   freshbooks.setAPIToken("API_TOKEN_HERE");
   queryResults = freshbooks.clientList(folder='active',returnFormat='query',returnFields="first_name,last_name,organization,client_id");
</cfscript>