Business::Shipping::UPS_Online::Tracking - A UPS module for Tracking Packages


NAME

Business::Shipping::UPS_Online::Tracking - A UPS module for Tracking Packages

See Tracking.pm POD for usage information.

EXAMPLE

my $results = $tracker->results();

# The results hash will contain this type of information

{ # Date the package was picked up pickup_date => '...',

  # Scheduled delivery date (YYYYMMDD)
  scheduled_delivery_date => '...',
  # Scheduled delivery time (HHMMSS)
  scheduled_delivery_time => '...',
  # Rescheduled delivery date (YYYYMMDD)
  rescheduled_delivery_date => '...',
  # Rescheduled delivery time (HHMMSS)
  rescheduled_delivery_time => '...',
  # Shipment method code and description for package
  service_code => '...',
  service_description => '...',
  
  # Summary will contain the latest activity entry, a copy of activity->[0]
  summary => { },
  # Activity of the package in transit, newest entries first.
  activity => [
  {
    # Address information of the activity 
    address => {
       city => '...',
       state => '...',
       zip => '...',
       country => '...',
       description => '...',
       code => '...',
       signedforbyname => '...',
    },
    # Code of activity
    status_code => '...',
    status_description => '...',
    
    # Date of activity (YYYYMMDD)
    date => '...',
    # Time of activity (HHMMSS)
    time => '...',
  }
 
  ],
}


COPYRIGHT AND LICENCE

Copyright (c) 2004 InfoGears Inc. http://www.infogears.com All rights reserved.

Portions Copyright (c) 2003-2004 Kavod Technologies, Dan Browning. All rights reserved.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. See LICENSE for more info.

 Business::Shipping::UPS_Online::Tracking - A UPS module for Tracking Packages