Skip to content

Instantly share code, notes, and snippets.

@joemocha
Created July 13, 2015 21:07
Show Gist options
  • Select an option

  • Save joemocha/a79f2a127f08a6a3dc74 to your computer and use it in GitHub Desktop.

Select an option

Save joemocha/a79f2a127f08a6a3dc74 to your computer and use it in GitHub Desktop.
begin
address = EasyPost::Address.create(
:name => 'Test Person',
:street1 => '15 TANGUAY AVENUE',
:city => 'Nashua',
:state => 'NH',
:zip => '03062',
:country => 'US',
:phone => '201-273-8374',
:residential => false
)
address.verify
rescue EasyPost::Error => e
puts "ERROR: #{e.message}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment