DOKK / manpages / debian 10 / libbusiness-us-usps-webtools-perl / Business::US::USPS::WebTools::CityStateLookup.3pm.en
Business::US::USPS::WebTools::CityStateLookup(3pm) User Contributed Perl Documentation Business::US::USPS::WebTools::CityStateLookup(3pm)

Business::US::USPS::WebTools::CityStateLookup - lookup a City and State by Zip Code

        use Business::US::USPS::WebTools::AddressStandardization;
        my $looker_upper = Business::US::USPS::WebTools::CityStateLookup->new( {
                UserID   => $ENV{USPS_WEBTOOLS_USERID},
                Password => $ENV{USPS_WEBTOOLS_PASSWORD},
                Testing  => 1,
                } );
        my $hash = $looker_upper->lookup_city_state(
                );
        if( $looker_upper->is_error )
                {
                warn "Oh No! $looker_upper->{error}{description}\n";
                }
        else
                {
                print join "\n", map { "$_: $hash->{$_}" }
                        qw(FirmName Address1 Address2 City State Zip5 Zip4);
                }

*** THIS IS ALPHA SOFTWARE ***

This module implements the Address Standardization web service from the US Postal Service. It is a subclass of Business::US::USPS::WebTools.

The "verify_address" method takes the following keys, which come directly from the USPS web service interface:

        FirmName        The name of the company
        Address1        The suite or apartment
        Address2        The street address
        City            The name of the city
        State           The two letter state abbreviation
        Zip5            The 5 digit zip code
        Zip4            The 4 digit extension to the zip code
    

It returns an anonymous hash with the same keys, but the values are the USPS's canonicalized address. If there is an error, the hash values will be the empty string, and the error flag is set. Check is with "is_error":

        $verifier->is_error;
    

See the "is_error" documentation in Business::US::USPS::WebTools for more details on error information.

Business::US::USPS::WebTools

The WebTools API is documented on the US Postal Service's website:

https://www.usps.com/business/web-tools-apis/address-information-api.pdf

This source is in GitHub:

        https://github.com/briandfoy/business-us-usps-webtools

brian d foy, "<bdfoy@cpan.org>"

Copyright © 2006-2016, brian d foy <bdfoy@cpan.org>. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2021-05-22 perl v5.28.1