lib/usps/api/endpoints/zip_code_lookup.rb in usps-ruby-client-0.1.3 vs lib/usps/api/endpoints/zip_code_lookup.rb in usps-ruby-client-0.2.0
- old
+ new
@@ -18,10 +18,10 @@
# * *:address2* (required, String) — Delivery Address in the destination address. Required for all mail and packages, however 11-digit Destination Delivery Point ZIP+4 Code can be provided as an alternative in the Detail 1 Record.
# * *:city* (String) — City name of the destination address. Field is required, unless a verified 11-digit DPV is provided for the mail piece.
# * *:state* (String) — Two-character state code of the destination address.
# * *:zip5* (String) — Destination 5-digit ZIP Code. Must be 5-digits. Numeric values (0-9) only. If International, all zeroes.
# * *:zip4* (String) — Destination ZIP+4. Numeric values (0-9) only. If International, all zeroes. Default to spaces if not available.
-def zip_code_lookup(options = {})
+ def zip_code_lookup(options = {})
throw ArgumentError.new('Required arguments :zip_code_lookup_request missing') if options[:zip_code_lookup_request].nil?
request = build_request(:zip_code_lookup, options)
get('https://secure.shippingapis.com/ShippingAPI.dll', {
API: 'ZipCodeLookup',