Skip to content

Instantly share code, notes, and snippets.

@thattommyhall
Created February 16, 2011 23:27
Show Gist options
  • Save thattommyhall/830544 to your computer and use it in GitHub Desktop.
Save thattommyhall/830544 to your computer and use it in GitHub Desktop.
Create a contact in FreeAgent using freeagent_api from https://github.com/aaronrussell/freeagent_api
require 'freeagent_api'
include Freeagent
Freeagent.authenticate({
:domain => 'tthuk.freeagentcentral.com',
:username => '[email protected]',
:password => 'NotMyRealPassword'})
Contact.new({ :first_name => 'Tom',
:last_name => 'Hall',
:email => '[email protected]'}).save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment