reactive_shipping 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.travis.yml +33 -0
- data/.yardopts +13 -0
- data/CHANGELOG.md +225 -0
- data/CONTRIBUTING.md +23 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +21 -0
- data/README.md +158 -0
- data/Rakefile +35 -0
- data/dev.yml +17 -0
- data/gemfiles/activesupport42.gemfile +5 -0
- data/gemfiles/activesupport50.gemfile +6 -0
- data/gemfiles/activesupport51.gemfile +5 -0
- data/gemfiles/activesupport52.gemfile +5 -0
- data/gemfiles/activesupport_master.gemfile +5 -0
- data/lib/certs/eParcel.dtd +111 -0
- data/lib/reactive_shipping.rb +26 -0
- data/lib/reactive_shipping/address_validation_response.rb +30 -0
- data/lib/reactive_shipping/carrier.rb +184 -0
- data/lib/reactive_shipping/carriers.rb +35 -0
- data/lib/reactive_shipping/carriers/australia_post.rb +248 -0
- data/lib/reactive_shipping/carriers/benchmark_carrier.rb +31 -0
- data/lib/reactive_shipping/carriers/bogus_carrier.rb +12 -0
- data/lib/reactive_shipping/carriers/canada_post.rb +263 -0
- data/lib/reactive_shipping/carriers/canada_post_pws.rb +908 -0
- data/lib/reactive_shipping/carriers/fedex.rb +797 -0
- data/lib/reactive_shipping/carriers/kunaki.rb +155 -0
- data/lib/reactive_shipping/carriers/new_zealand_post.rb +260 -0
- data/lib/reactive_shipping/carriers/shipwire.rb +178 -0
- data/lib/reactive_shipping/carriers/stamps.rb +860 -0
- data/lib/reactive_shipping/carriers/ups.rb +1060 -0
- data/lib/reactive_shipping/carriers/usps.rb +708 -0
- data/lib/reactive_shipping/carriers/usps_returns.rb +86 -0
- data/lib/reactive_shipping/delivery_date_estimate.rb +20 -0
- data/lib/reactive_shipping/delivery_date_estimates_response.rb +11 -0
- data/lib/reactive_shipping/errors.rb +35 -0
- data/lib/reactive_shipping/external_return_label_request.rb +417 -0
- data/lib/reactive_shipping/external_return_label_response.rb +26 -0
- data/lib/reactive_shipping/label.rb +10 -0
- data/lib/reactive_shipping/label_response.rb +10 -0
- data/lib/reactive_shipping/location.rb +166 -0
- data/lib/reactive_shipping/package.rb +165 -0
- data/lib/reactive_shipping/package_item.rb +60 -0
- data/lib/reactive_shipping/rate_estimate.rb +197 -0
- data/lib/reactive_shipping/rate_response.rb +33 -0
- data/lib/reactive_shipping/response.rb +44 -0
- data/lib/reactive_shipping/shipment_event.rb +22 -0
- data/lib/reactive_shipping/shipment_packer.rb +108 -0
- data/lib/reactive_shipping/shipping_response.rb +34 -0
- data/lib/reactive_shipping/tracking_response.rb +120 -0
- data/lib/reactive_shipping/version.rb +3 -0
- data/reactive_shipping.gemspec +38 -0
- data/shipit.rubygems.yml +1 -0
- data/test/console.rb +39 -0
- data/test/credentials.yml +76 -0
- data/test/fixtures/files/label1.pdf +0 -0
- data/test/fixtures/files/ups-shipping-label.gif +0 -0
- data/test/fixtures/json/australia_post/calculate_domestic.json +13 -0
- data/test/fixtures/json/australia_post/calculate_domestic_2.json +19 -0
- data/test/fixtures/json/australia_post/calculate_international.json +12 -0
- data/test/fixtures/json/australia_post/calculate_international_2.json +15 -0
- data/test/fixtures/json/australia_post/error_message.json +5 -0
- data/test/fixtures/json/australia_post/service_domestic.json +117 -0
- data/test/fixtures/json/australia_post/service_domestic_2.json +117 -0
- data/test/fixtures/json/australia_post/service_international.json +76 -0
- data/test/fixtures/json/australia_post/service_international_2.json +59 -0
- data/test/fixtures/json/newzealandpost/domestic_book.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_default.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_error.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_poster.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_small_half_pound.json +1 -0
- data/test/fixtures/json/newzealandpost/international_book.json +1 -0
- data/test/fixtures/json/newzealandpost/international_new_zealand_wii.json +1 -0
- data/test/fixtures/json/newzealandpost/international_small_half_pound.json +1 -0
- data/test/fixtures/json/newzealandpost/international_wii.json +1 -0
- data/test/fixtures/xml/canadapost/example_request.xml +25 -0
- data/test/fixtures/xml/canadapost/example_response.xml +130 -0
- data/test/fixtures/xml/canadapost/example_response_error.xml +16 -0
- data/test/fixtures/xml/canadapost/example_response_french.xml +122 -0
- data/test/fixtures/xml/canadapost/example_response_with_nil_value.xml +164 -0
- data/test/fixtures/xml/canadapost/example_response_with_postal_outlet.xml +155 -0
- data/test/fixtures/xml/canadapost/example_response_with_postal_outlet_french.xml +274 -0
- data/test/fixtures/xml/canadapost/example_response_with_strange_delivery_date.xml +130 -0
- data/test/fixtures/xml/canadapost_pws/dnc_tracking_details_en.xml +112 -0
- data/test/fixtures/xml/canadapost_pws/merchant_details_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/merchant_details_response.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/option_response.xml +13 -0
- data/test/fixtures/xml/canadapost_pws/option_response_no_conflicts.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/rates_info.xml +190 -0
- data/test/fixtures/xml/canadapost_pws/rates_info_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/receipt_response.xml +42 -0
- data/test/fixtures/xml/canadapost_pws/receipt_response_no_priced_options.xml +36 -0
- data/test/fixtures/xml/canadapost_pws/register_token_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/register_token_response.xml +3 -0
- data/test/fixtures/xml/canadapost_pws/service_options_response.xml +42 -0
- data/test/fixtures/xml/canadapost_pws/services_error.xml +6 -0
- data/test/fixtures/xml/canadapost_pws/services_response.xml +32 -0
- data/test/fixtures/xml/canadapost_pws/shipment_domestic.xml +69 -0
- data/test/fixtures/xml/canadapost_pws/shipment_response.xml +20 -0
- data/test/fixtures/xml/canadapost_pws/shipment_us.xml +69 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en.xml +152 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en_undelivered.xml +116 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_fr.xml +156 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_no_expected_delivery_date.xml +40 -0
- data/test/fixtures/xml/fedex/create_shipment_response.xml +2 -0
- data/test/fixtures/xml/fedex/freight_rate_request.xml +82 -0
- data/test/fixtures/xml/fedex/freight_rate_response.xml +506 -0
- data/test/fixtures/xml/fedex/invalid_fedex_reply.xml +27 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_commercial_rate_request.xml +79 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_no_saturday_rate_request.xml +79 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_request.xml +80 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_response.xml +214 -0
- data/test/fixtures/xml/fedex/raterequest_reply.xml +213 -0
- data/test/fixtures/xml/fedex/raterequest_response_with_ground_home_delivery.xml +206 -0
- data/test/fixtures/xml/fedex/reply_without_notifications.xml +185 -0
- data/test/fixtures/xml/fedex/tracking_request.xml +29 -0
- data/test/fixtures/xml/fedex/tracking_response_bad_tracking_number.xml +20 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_at_door.xml +254 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_at_facility.xml +403 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_with_signature.xml +269 -0
- data/test/fixtures/xml/fedex/tracking_response_empty_status_detail.xml +84 -0
- data/test/fixtures/xml/fedex/tracking_response_failure_code_9045.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_failure_code_9080.xml +51 -0
- data/test/fixtures/xml/fedex/tracking_response_in_transit.xml +127 -0
- data/test/fixtures/xml/fedex/tracking_response_invalid_tracking_number.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_missing_status_code.xml +89 -0
- data/test/fixtures/xml/fedex/tracking_response_multiple_results.xml +100 -0
- data/test/fixtures/xml/fedex/tracking_response_not_found.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_shipment_exception.xml +209 -0
- data/test/fixtures/xml/fedex/tracking_response_unable_to_process.xml +32 -0
- data/test/fixtures/xml/fedex/tracking_response_with_blank_state.xml +107 -0
- data/test/fixtures/xml/fedex/unknown_fedex_document_reply.xml +3 -0
- data/test/fixtures/xml/kunaki/invalid_state_response.xml +3 -0
- data/test/fixtures/xml/kunaki/no_valid_items_response.xml +3 -0
- data/test/fixtures/xml/kunaki/successful_rates_response.xml +3 -0
- data/test/fixtures/xml/kunaki/unsuccessful_rates_response.xml +9 -0
- data/test/fixtures/xml/shipwire/international_rates_response.xml +17 -0
- data/test/fixtures/xml/shipwire/new_carrier_rate_response.xml +18 -0
- data/test/fixtures/xml/shipwire/no_rates_response.xml +7 -0
- data/test/fixtures/xml/shipwire/rates_response.xml +36 -0
- data/test/fixtures/xml/shipwire/rates_response_no_estimate.xml +14 -0
- data/test/fixtures/xml/stamps/authenticate_user_request.xml +15 -0
- data/test/fixtures/xml/stamps/authenticate_user_response.xml +10 -0
- data/test/fixtures/xml/stamps/cleanse_address_request.xml +19 -0
- data/test/fixtures/xml/stamps/cleanse_address_response.xml +27 -0
- data/test/fixtures/xml/stamps/create_indicium_request.xml +69 -0
- data/test/fixtures/xml/stamps/create_indicium_response.xml +40 -0
- data/test/fixtures/xml/stamps/expired_authenticator_response.xml +15 -0
- data/test/fixtures/xml/stamps/get_account_info_request.xml +11 -0
- data/test/fixtures/xml/stamps/get_account_info_response.xml +36 -0
- data/test/fixtures/xml/stamps/get_purchase_status_request.xml +12 -0
- data/test/fixtures/xml/stamps/get_purchase_status_response.xml +16 -0
- data/test/fixtures/xml/stamps/get_rates_request.xml +19 -0
- data/test/fixtures/xml/stamps/get_rates_response.xml +351 -0
- data/test/fixtures/xml/stamps/purchase_postage_request.xml +13 -0
- data/test/fixtures/xml/stamps/purchase_postage_response.xml +17 -0
- data/test/fixtures/xml/stamps/track_shipment_request.xml +12 -0
- data/test/fixtures/xml/stamps/track_shipment_response.xml +45 -0
- data/test/fixtures/xml/ups/access_request.xml +6 -0
- data/test/fixtures/xml/ups/delivered_shipment_with_refund.xml +290 -0
- data/test/fixtures/xml/ups/delivered_shipment_without_events_tracking_response.xml +62 -0
- data/test/fixtures/xml/ups/delivery_dates_response.xml +140 -0
- data/test/fixtures/xml/ups/example_tracking_response.xml +53 -0
- data/test/fixtures/xml/ups/in_transit_shipment.xml +183 -0
- data/test/fixtures/xml/ups/out_for_delivery_shipment.xml +165 -0
- data/test/fixtures/xml/ups/package_exceeds_maximum_length.xml +12 -0
- data/test/fixtures/xml/ups/rate_single_service.xml +54 -0
- data/test/fixtures/xml/ups/rescheduled_shipment.xml +204 -0
- data/test/fixtures/xml/ups/shipment_accept_response.xml +42 -0
- data/test/fixtures/xml/ups/shipment_confirm_response.xml +33 -0
- data/test/fixtures/xml/ups/shipment_from_tiger_direct.xml +222 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response.xml +290 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response_with_insured.xml +289 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_with_origin_account_response.xml +311 -0
- data/test/fixtures/xml/ups/tracking_request.xml +9 -0
- data/test/fixtures/xml/ups/triple_accept_response.xml +72 -0
- data/test/fixtures/xml/ups/triple_confirm_response.xml +32 -0
- data/test/fixtures/xml/ups/void_shipment_response.xml +11 -0
- data/test/fixtures/xml/usps/api_error_rate_response.xml +53 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_base_rate_response.xml +2 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_plus_rate_response.xml +258 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_rate_response.xml +108 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_base_rate_response.xml +84 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_plus_rate_response.xml +212 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_rate_response.xml +230 -0
- data/test/fixtures/xml/usps/first_class_packages_with_invalid_mail_type_response.xml +12 -0
- data/test/fixtures/xml/usps/first_class_packages_with_mail_type_response.xml +16 -0
- data/test/fixtures/xml/usps/first_class_packages_without_mail_type_response.xml +12 -0
- data/test/fixtures/xml/usps/invalid_xml_response.xml +10 -0
- data/test/fixtures/xml/usps/invalid_xml_tracking_response_error.xml +2 -0
- data/test/fixtures/xml/usps/tracking_request.xml +10 -0
- data/test/fixtures/xml/usps/tracking_request_batch.xml +12 -0
- data/test/fixtures/xml/usps/tracking_response.xml +162 -0
- data/test/fixtures/xml/usps/tracking_response_alt.xml +53 -0
- data/test/fixtures/xml/usps/tracking_response_batch.xml +231 -0
- data/test/fixtures/xml/usps/tracking_response_failure.xml +11 -0
- data/test/fixtures/xml/usps/tracking_response_not_available.xml +12 -0
- data/test/fixtures/xml/usps/tracking_response_test_error.xml +8 -0
- data/test/fixtures/xml/usps/us_rate_request.xml +18 -0
- data/test/fixtures/xml/usps/us_rate_request_large.xml +18 -0
- data/test/fixtures/xml/usps/world_rate_request_only_country.xml +22 -0
- data/test/fixtures/xml/usps/world_rate_request_with_value.xml +24 -0
- data/test/fixtures/xml/usps/world_rate_request_without_value.xml +24 -0
- data/test/fixtures/xml/usps_returns/external_return_label_response.xml +2 -0
- data/test/fixtures/xml/usps_returns/external_return_label_response_failure.xml +10 -0
- data/test/remote/australia_post_test.rb +140 -0
- data/test/remote/canada_post_pws_platform_test.rb +259 -0
- data/test/remote/canada_post_pws_test.rb +169 -0
- data/test/remote/canada_post_test.rb +55 -0
- data/test/remote/fedex_test.rb +400 -0
- data/test/remote/kunaki_test.rb +37 -0
- data/test/remote/new_zealand_post_test.rb +149 -0
- data/test/remote/shipwire_test.rb +84 -0
- data/test/remote/stamps_test.rb +396 -0
- data/test/remote/usps_returns_test.rb +72 -0
- data/test/remote/usps_test.rb +243 -0
- data/test/test_helper.rb +296 -0
- data/test/unit/carrier_test.rb +130 -0
- data/test/unit/carriers/australia_post_test.rb +181 -0
- data/test/unit/carriers/benchmark_test.rb +18 -0
- data/test/unit/carriers/canada_post_pws_rating_test.rb +379 -0
- data/test/unit/carriers/canada_post_pws_register_test.rb +76 -0
- data/test/unit/carriers/canada_post_pws_shipping_test.rb +258 -0
- data/test/unit/carriers/canada_post_pws_test.rb +59 -0
- data/test/unit/carriers/canada_post_pws_tracking_test.rb +154 -0
- data/test/unit/carriers/canada_post_test.rb +148 -0
- data/test/unit/carriers/fedex_test.rb +693 -0
- data/test/unit/carriers/kunaki_test.rb +56 -0
- data/test/unit/carriers/new_zealand_post_test.rb +177 -0
- data/test/unit/carriers/shipwire_test.rb +188 -0
- data/test/unit/carriers/stamps_test.rb +245 -0
- data/test/unit/carriers/ups_test.rb +580 -0
- data/test/unit/carriers/usps_returns_test.rb +45 -0
- data/test/unit/carriers/usps_test.rb +633 -0
- data/test/unit/carriers_test.rb +16 -0
- data/test/unit/external_return_label_request_test.rb +258 -0
- data/test/unit/location_test.rb +234 -0
- data/test/unit/package_item_test.rb +232 -0
- data/test/unit/package_test.rb +404 -0
- data/test/unit/rate_estimate_test.rb +93 -0
- data/test/unit/response_test.rb +38 -0
- data/test/unit/shipment_event_test.rb +20 -0
- data/test/unit/shipment_packer_test.rb +212 -0
- data/test/unit/tracking_response_test.rb +41 -0
- metadata +684 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<TrackRequest xmlns="http://fedex.com/ws/track/v7">
|
3
|
+
<WebAuthenticationDetail>
|
4
|
+
<UserCredential>
|
5
|
+
<Key>5FJsRZSnp1kVPzRg</Key>
|
6
|
+
<Password>jziwHavkOa7KSvyHOMK0iz1GG</Password>
|
7
|
+
</UserCredential>
|
8
|
+
</WebAuthenticationDetail>
|
9
|
+
<ClientDetail>
|
10
|
+
<AccountNumber>510087909</AccountNumber>
|
11
|
+
<MeterNumber>100007836</MeterNumber>
|
12
|
+
</ClientDetail>
|
13
|
+
<TransactionDetail>
|
14
|
+
<CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
|
15
|
+
</TransactionDetail>
|
16
|
+
<Version>
|
17
|
+
<ServiceId>trck</ServiceId>
|
18
|
+
<Major>7</Major>
|
19
|
+
<Intermediate>0</Intermediate>
|
20
|
+
<Minor>0</Minor>
|
21
|
+
</Version>
|
22
|
+
<SelectionDetails>
|
23
|
+
<PackageIdentifier>
|
24
|
+
<Type>TRACKING_NUMBER_OR_DOORTAG</Type>
|
25
|
+
<Value>12345</Value>
|
26
|
+
</PackageIdentifier>
|
27
|
+
</SelectionDetails>
|
28
|
+
<ProcessingOptions>INCLUDE_DETAILED_SCANS</ProcessingOptions>
|
29
|
+
</TrackRequest>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<TrackReply xmlns="http://fedex.com/ws/track/v7" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
|
3
|
+
<HighestSeverity>ERROR</HighestSeverity>
|
4
|
+
<Notifications>
|
5
|
+
<Severity>ERROR</Severity>
|
6
|
+
<Source>trck</Source>
|
7
|
+
<Code>5508</Code>
|
8
|
+
<Message>Invalid tracking number.</Message>
|
9
|
+
<LocalizedMessage>Invalid tracking number.</LocalizedMessage>
|
10
|
+
</Notifications>
|
11
|
+
<TransactionDetail>
|
12
|
+
<CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
|
13
|
+
</TransactionDetail>
|
14
|
+
<Version>
|
15
|
+
<ServiceId>trck</ServiceId>
|
16
|
+
<Major>7</Major>
|
17
|
+
<Intermediate>0</Intermediate>
|
18
|
+
<Minor>0</Minor>
|
19
|
+
</Version>
|
20
|
+
</TrackReply>
|
@@ -0,0 +1,254 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<TrackReply xmlns="http://fedex.com/ws/track/v7" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
|
3
|
+
<HighestSeverity>SUCCESS</HighestSeverity>
|
4
|
+
<Notifications>
|
5
|
+
<Severity>SUCCESS</Severity>
|
6
|
+
<Source>trck</Source>
|
7
|
+
<Code>0</Code>
|
8
|
+
<Message>Request was successfully processed.</Message>
|
9
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
10
|
+
</Notifications>
|
11
|
+
<TransactionDetail>
|
12
|
+
<CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
|
13
|
+
</TransactionDetail>
|
14
|
+
<Version>
|
15
|
+
<ServiceId>trck</ServiceId>
|
16
|
+
<Major>7</Major>
|
17
|
+
<Intermediate>0</Intermediate>
|
18
|
+
<Minor>0</Minor>
|
19
|
+
</Version>
|
20
|
+
<CompletedTrackDetails>
|
21
|
+
<HighestSeverity>SUCCESS</HighestSeverity>
|
22
|
+
<Notifications>
|
23
|
+
<Severity>SUCCESS</Severity>
|
24
|
+
<Source>trck</Source>
|
25
|
+
<Code>0</Code>
|
26
|
+
<Message>Request was successfully processed.</Message>
|
27
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
28
|
+
</Notifications>
|
29
|
+
<DuplicateWaybill>false</DuplicateWaybill>
|
30
|
+
<MoreData>false</MoreData>
|
31
|
+
<TrackDetails>
|
32
|
+
<Notification>
|
33
|
+
<Severity>SUCCESS</Severity>
|
34
|
+
<Source>trck</Source>
|
35
|
+
<Code>0</Code>
|
36
|
+
<Message>Request was successfully processed.</Message>
|
37
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
38
|
+
</Notification>
|
39
|
+
<TrackingNumber>403934084723025</TrackingNumber>
|
40
|
+
<TrackingNumberUniqueIdentifier>12013~403934084723025~FDEG</TrackingNumberUniqueIdentifier>
|
41
|
+
<StatusDetail>
|
42
|
+
<CreationTime>2014-01-08T00:00:00</CreationTime>
|
43
|
+
<Code>DL</Code>
|
44
|
+
<Description>Delivered</Description>
|
45
|
+
<Location>
|
46
|
+
<StreetLines>11304 E 33RD AVE</StreetLines>
|
47
|
+
<City>Spokane</City>
|
48
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
49
|
+
<CountryCode>US</CountryCode>
|
50
|
+
<CountryName>United States</CountryName>
|
51
|
+
<Residential>false</Residential>
|
52
|
+
</Location>
|
53
|
+
<AncillaryDetails>
|
54
|
+
<Reason>014</Reason>
|
55
|
+
<ReasonDescription>Left at front door.Signature Service not requested.</ReasonDescription>
|
56
|
+
</AncillaryDetails>
|
57
|
+
</StatusDetail>
|
58
|
+
<CarrierCode>FDXG</CarrierCode>
|
59
|
+
<OperatingCompanyOrCarrierDescription>FedEx Ground</OperatingCompanyOrCarrierDescription>
|
60
|
+
<OtherIdentifiers>
|
61
|
+
<PackageIdentifier>
|
62
|
+
<Type>GROUND_SHIPMENT_ID</Type>
|
63
|
+
<Value>403934084723025</Value>
|
64
|
+
</PackageIdentifier>
|
65
|
+
</OtherIdentifiers>
|
66
|
+
<OtherIdentifiers>
|
67
|
+
<PackageIdentifier>
|
68
|
+
<Type>DEPARTMENT</Type>
|
69
|
+
<Value>31826722</Value>
|
70
|
+
</PackageIdentifier>
|
71
|
+
</OtherIdentifiers>
|
72
|
+
<Service>
|
73
|
+
<Type>GROUND_HOME_DELIVERY</Type>
|
74
|
+
<Description>FedEx Home Delivery</Description>
|
75
|
+
<ShortDescription>HD</ShortDescription>
|
76
|
+
</Service>
|
77
|
+
<PackageWeight>
|
78
|
+
<Units>LB</Units>
|
79
|
+
<Value>0.4</Value>
|
80
|
+
</PackageWeight>
|
81
|
+
<Packaging>Package</Packaging>
|
82
|
+
<PackagingType>YOUR_PACKAGING</PackagingType>
|
83
|
+
<PackageSequenceNumber>1</PackageSequenceNumber>
|
84
|
+
<PackageCount>1</PackageCount>
|
85
|
+
<OriginLocationAddress>
|
86
|
+
<City>CAMBRIDGE</City>
|
87
|
+
<StateOrProvinceCode>OH</StateOrProvinceCode>
|
88
|
+
<CountryCode>US</CountryCode>
|
89
|
+
<CountryName>United States</CountryName>
|
90
|
+
<Residential>false</Residential>
|
91
|
+
</OriginLocationAddress>
|
92
|
+
<ShipTimestamp>2014-01-03T00:00:00</ShipTimestamp>
|
93
|
+
<DestinationAddress>
|
94
|
+
<City>Spokane Valley</City>
|
95
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
96
|
+
<CountryCode>US</CountryCode>
|
97
|
+
<CountryName>United States</CountryName>
|
98
|
+
<Residential>false</Residential>
|
99
|
+
</DestinationAddress>
|
100
|
+
<ActualDeliveryTimestamp>2014-01-08T12:53:10-08:00</ActualDeliveryTimestamp>
|
101
|
+
<ActualDeliveryAddress>
|
102
|
+
<City>Spokane</City>
|
103
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
104
|
+
<CountryCode>US</CountryCode>
|
105
|
+
<CountryName>United States</CountryName>
|
106
|
+
<Residential>false</Residential>
|
107
|
+
</ActualDeliveryAddress>
|
108
|
+
<DeliveryAttempts>0</DeliveryAttempts>
|
109
|
+
<DeliverySignatureName>Signature not required</DeliverySignatureName>
|
110
|
+
<TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
|
111
|
+
<RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
|
112
|
+
<Events>
|
113
|
+
<Timestamp>2014-01-08T12:53:10-08:00</Timestamp>
|
114
|
+
<EventType>DL</EventType>
|
115
|
+
<EventDescription>Delivered</EventDescription>
|
116
|
+
<StatusExceptionCode>014</StatusExceptionCode>
|
117
|
+
<StatusExceptionDescription>Left at front door. Signature Service not requested.</StatusExceptionDescription>
|
118
|
+
<Address>
|
119
|
+
<City>Spokane</City>
|
120
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
121
|
+
<PostalCode>99206</PostalCode>
|
122
|
+
<CountryCode>US</CountryCode>
|
123
|
+
<CountryName>United States</CountryName>
|
124
|
+
<Residential>false</Residential>
|
125
|
+
</Address>
|
126
|
+
<ArrivalLocation>DELIVERY_LOCATION</ArrivalLocation>
|
127
|
+
</Events>
|
128
|
+
<Events>
|
129
|
+
<Timestamp>2014-01-08T06:33:00-08:00</Timestamp>
|
130
|
+
<EventType>OD</EventType>
|
131
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
132
|
+
<Address>
|
133
|
+
<City>SPOKANE</City>
|
134
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
135
|
+
<PostalCode>99216</PostalCode>
|
136
|
+
<CountryCode>US</CountryCode>
|
137
|
+
<CountryName>United States</CountryName>
|
138
|
+
<Residential>false</Residential>
|
139
|
+
</Address>
|
140
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
141
|
+
</Events>
|
142
|
+
<Events>
|
143
|
+
<Timestamp>2014-01-08T05:46:00-08:00</Timestamp>
|
144
|
+
<EventType>AR</EventType>
|
145
|
+
<EventDescription>At local FedEx facility</EventDescription>
|
146
|
+
<Address>
|
147
|
+
<City>SPOKANE</City>
|
148
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
149
|
+
<PostalCode>99216</PostalCode>
|
150
|
+
<CountryCode>US</CountryCode>
|
151
|
+
<CountryName>United States</CountryName>
|
152
|
+
<Residential>false</Residential>
|
153
|
+
</Address>
|
154
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
155
|
+
</Events>
|
156
|
+
<Events>
|
157
|
+
<Timestamp>2014-01-08T02:15:57-08:00</Timestamp>
|
158
|
+
<EventType>IT</EventType>
|
159
|
+
<EventDescription>In transit</EventDescription>
|
160
|
+
<Address>
|
161
|
+
<City>PASCO</City>
|
162
|
+
<StateOrProvinceCode>WA</StateOrProvinceCode>
|
163
|
+
<PostalCode>99301</PostalCode>
|
164
|
+
<CountryCode>US</CountryCode>
|
165
|
+
<CountryName>United States</CountryName>
|
166
|
+
<Residential>false</Residential>
|
167
|
+
</Address>
|
168
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
169
|
+
</Events>
|
170
|
+
<Events>
|
171
|
+
<Timestamp>2014-01-07T21:54:07-08:00</Timestamp>
|
172
|
+
<EventType>DP</EventType>
|
173
|
+
<EventDescription>Departed FedEx location</EventDescription>
|
174
|
+
<Address>
|
175
|
+
<City>TROUTDALE</City>
|
176
|
+
<StateOrProvinceCode>OR</StateOrProvinceCode>
|
177
|
+
<PostalCode>97060</PostalCode>
|
178
|
+
<CountryCode>US</CountryCode>
|
179
|
+
<CountryName>United States</CountryName>
|
180
|
+
<Residential>false</Residential>
|
181
|
+
</Address>
|
182
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
183
|
+
</Events>
|
184
|
+
<Events>
|
185
|
+
<Timestamp>2014-01-07T20:14:00-08:00</Timestamp>
|
186
|
+
<EventType>AR</EventType>
|
187
|
+
<EventDescription>Arrived at FedEx location</EventDescription>
|
188
|
+
<Address>
|
189
|
+
<City>TROUTDALE</City>
|
190
|
+
<StateOrProvinceCode>OR</StateOrProvinceCode>
|
191
|
+
<PostalCode>97060</PostalCode>
|
192
|
+
<CountryCode>US</CountryCode>
|
193
|
+
<CountryName>United States</CountryName>
|
194
|
+
<Residential>false</Residential>
|
195
|
+
</Address>
|
196
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
197
|
+
</Events>
|
198
|
+
<Events>
|
199
|
+
<Timestamp>2014-01-04T14:30:17-05:00</Timestamp>
|
200
|
+
<EventType>DP</EventType>
|
201
|
+
<EventDescription>Departed FedEx location</EventDescription>
|
202
|
+
<Address>
|
203
|
+
<City>GROVE CITY</City>
|
204
|
+
<StateOrProvinceCode>OH</StateOrProvinceCode>
|
205
|
+
<PostalCode>43123</PostalCode>
|
206
|
+
<CountryCode>US</CountryCode>
|
207
|
+
<CountryName>United States</CountryName>
|
208
|
+
<Residential>false</Residential>
|
209
|
+
</Address>
|
210
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
211
|
+
</Events>
|
212
|
+
<Events>
|
213
|
+
<Timestamp>2014-01-04T00:43:00-05:00</Timestamp>
|
214
|
+
<EventType>AR</EventType>
|
215
|
+
<EventDescription>Arrived at FedEx location</EventDescription>
|
216
|
+
<Address>
|
217
|
+
<City>GROVE CITY</City>
|
218
|
+
<StateOrProvinceCode>OH</StateOrProvinceCode>
|
219
|
+
<PostalCode>43123</PostalCode>
|
220
|
+
<CountryCode>US</CountryCode>
|
221
|
+
<CountryName>United States</CountryName>
|
222
|
+
<Residential>false</Residential>
|
223
|
+
</Address>
|
224
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
225
|
+
</Events>
|
226
|
+
<Events>
|
227
|
+
<Timestamp>2014-01-03T15:03:00-05:00</Timestamp>
|
228
|
+
<EventType>OC</EventType>
|
229
|
+
<EventDescription>Shipment information sent to FedEx</EventDescription>
|
230
|
+
<Address>
|
231
|
+
<PostalCode>43822</PostalCode>
|
232
|
+
<CountryCode>US</CountryCode>
|
233
|
+
<CountryName>United States</CountryName>
|
234
|
+
<Residential>false</Residential>
|
235
|
+
</Address>
|
236
|
+
<ArrivalLocation>CUSTOMER</ArrivalLocation>
|
237
|
+
</Events>
|
238
|
+
<Events>
|
239
|
+
<Timestamp>2014-01-03T00:00:00</Timestamp>
|
240
|
+
<EventType>PU</EventType>
|
241
|
+
<EventDescription>Picked up</EventDescription>
|
242
|
+
<Address>
|
243
|
+
<City>CAMBRIDGE</City>
|
244
|
+
<StateOrProvinceCode>OH</StateOrProvinceCode>
|
245
|
+
<PostalCode>43725</PostalCode>
|
246
|
+
<CountryCode>US</CountryCode>
|
247
|
+
<CountryName>United States</CountryName>
|
248
|
+
<Residential>false</Residential>
|
249
|
+
</Address>
|
250
|
+
<ArrivalLocation>PICKUP_LOCATION</ArrivalLocation>
|
251
|
+
</Events>
|
252
|
+
</TrackDetails>
|
253
|
+
</CompletedTrackDetails>
|
254
|
+
</TrackReply>
|
@@ -0,0 +1,403 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<TrackReply xmlns="http://fedex.com/ws/track/v7" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
|
3
|
+
<HighestSeverity>SUCCESS</HighestSeverity>
|
4
|
+
<Notifications>
|
5
|
+
<Severity>SUCCESS</Severity>
|
6
|
+
<Source>trck</Source>
|
7
|
+
<Code>0</Code>
|
8
|
+
<Message>Request was successfully processed.</Message>
|
9
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
10
|
+
</Notifications>
|
11
|
+
<TransactionDetail>
|
12
|
+
<CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
|
13
|
+
</TransactionDetail>
|
14
|
+
<Version>
|
15
|
+
<ServiceId>trck</ServiceId>
|
16
|
+
<Major>7</Major>
|
17
|
+
<Intermediate>0</Intermediate>
|
18
|
+
<Minor>0</Minor>
|
19
|
+
</Version>
|
20
|
+
<CompletedTrackDetails>
|
21
|
+
<HighestSeverity>SUCCESS</HighestSeverity>
|
22
|
+
<Notifications>
|
23
|
+
<Severity>SUCCESS</Severity>
|
24
|
+
<Source>trck</Source>
|
25
|
+
<Code>0</Code>
|
26
|
+
<Message>Request was successfully processed.</Message>
|
27
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
28
|
+
</Notifications>
|
29
|
+
<DuplicateWaybill>false</DuplicateWaybill>
|
30
|
+
<MoreData>false</MoreData>
|
31
|
+
<TrackDetails>
|
32
|
+
<Notification>
|
33
|
+
<Severity>SUCCESS</Severity>
|
34
|
+
<Source>trck</Source>
|
35
|
+
<Code>0</Code>
|
36
|
+
<Message>Request was successfully processed.</Message>
|
37
|
+
<LocalizedMessage>Request was successfully processed.</LocalizedMessage>
|
38
|
+
</Notification>
|
39
|
+
<TrackingNumber>843119172384577</TrackingNumber>
|
40
|
+
<TrackingNumberUniqueIdentifier>12013~843119172384577~FDEG</TrackingNumberUniqueIdentifier>
|
41
|
+
<StatusDetail>
|
42
|
+
<CreationTime>2014-01-08T00:00:00</CreationTime>
|
43
|
+
<Code>DL</Code>
|
44
|
+
<Description>Delivered</Description>
|
45
|
+
<Location>
|
46
|
+
<StreetLines>2201 SHATTUCK AVE</StreetLines>
|
47
|
+
<City>Berkeley</City>
|
48
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
49
|
+
<CountryCode>US</CountryCode>
|
50
|
+
<CountryName>United States</CountryName>
|
51
|
+
<Residential>false</Residential>
|
52
|
+
</Location>
|
53
|
+
<AncillaryDetails>
|
54
|
+
<Reason>005</Reason>
|
55
|
+
<ReasonDescription>Delivered to recipient at FedEx Office</ReasonDescription>
|
56
|
+
</AncillaryDetails>
|
57
|
+
</StatusDetail>
|
58
|
+
<CarrierCode>FDXG</CarrierCode>
|
59
|
+
<OperatingCompanyOrCarrierDescription>FedEx Ground</OperatingCompanyOrCarrierDescription>
|
60
|
+
<OtherIdentifiers>
|
61
|
+
<PackageIdentifier>
|
62
|
+
<Type>TRACKING_NUMBER_OR_DOORTAG</Type>
|
63
|
+
<Value>DT702642496002</Value>
|
64
|
+
</PackageIdentifier>
|
65
|
+
</OtherIdentifiers>
|
66
|
+
<OtherIdentifiers>
|
67
|
+
<PackageIdentifier>
|
68
|
+
<Type>TRACKING_NUMBER_OR_DOORTAG</Type>
|
69
|
+
<Value>DT702642495040</Value>
|
70
|
+
</PackageIdentifier>
|
71
|
+
</OtherIdentifiers>
|
72
|
+
<OtherIdentifiers>
|
73
|
+
<PackageIdentifier>
|
74
|
+
<Type>TRACKING_NUMBER_OR_DOORTAG</Type>
|
75
|
+
<Value>DT704745970857</Value>
|
76
|
+
</PackageIdentifier>
|
77
|
+
</OtherIdentifiers>
|
78
|
+
<Service>
|
79
|
+
<Type>GROUND_HOME_DELIVERY</Type>
|
80
|
+
<Description>FedEx Home Delivery</Description>
|
81
|
+
<ShortDescription>HD</ShortDescription>
|
82
|
+
</Service>
|
83
|
+
<PackageWeight>
|
84
|
+
<Units>LB</Units>
|
85
|
+
<Value>5.4</Value>
|
86
|
+
</PackageWeight>
|
87
|
+
<PackageDimensions>
|
88
|
+
<Length>17</Length>
|
89
|
+
<Width>16</Width>
|
90
|
+
<Height>11</Height>
|
91
|
+
<Units>IN</Units>
|
92
|
+
</PackageDimensions>
|
93
|
+
<Packaging>Package</Packaging>
|
94
|
+
<PackagingType>YOUR_PACKAGING</PackagingType>
|
95
|
+
<PackageSequenceNumber>1</PackageSequenceNumber>
|
96
|
+
<PackageCount>1</PackageCount>
|
97
|
+
<OriginLocationAddress>
|
98
|
+
<City>NASHVILLE</City>
|
99
|
+
<StateOrProvinceCode>TN</StateOrProvinceCode>
|
100
|
+
<CountryCode>US</CountryCode>
|
101
|
+
<CountryName>United States</CountryName>
|
102
|
+
<Residential>false</Residential>
|
103
|
+
</OriginLocationAddress>
|
104
|
+
<ShipTimestamp>2013-12-26T00:00:00</ShipTimestamp>
|
105
|
+
<DestinationAddress>
|
106
|
+
<City>BERKELEY</City>
|
107
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
108
|
+
<CountryCode>US</CountryCode>
|
109
|
+
<CountryName>United States</CountryName>
|
110
|
+
<Residential>false</Residential>
|
111
|
+
</DestinationAddress>
|
112
|
+
<ActualDeliveryTimestamp>2014-01-08T18:03:00-08:00</ActualDeliveryTimestamp>
|
113
|
+
<ActualDeliveryAddress>
|
114
|
+
<City>Berkeley</City>
|
115
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
116
|
+
<CountryCode>US</CountryCode>
|
117
|
+
<CountryName>United States</CountryName>
|
118
|
+
<Residential>false</Residential>
|
119
|
+
</ActualDeliveryAddress>
|
120
|
+
<DeliveryAttempts>0</DeliveryAttempts>
|
121
|
+
<DeliverySignatureName>KKRAUS</DeliverySignatureName>
|
122
|
+
<TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
|
123
|
+
<RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
|
124
|
+
<Events>
|
125
|
+
<Timestamp>2014-01-08T18:03:00-08:00</Timestamp>
|
126
|
+
<EventType>DL</EventType>
|
127
|
+
<EventDescription>Delivered</EventDescription>
|
128
|
+
<StatusExceptionCode>005</StatusExceptionCode>
|
129
|
+
<StatusExceptionDescription>Delivered to recipient at FedEx Office</StatusExceptionDescription>
|
130
|
+
<Address>
|
131
|
+
<City>Berkeley</City>
|
132
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
133
|
+
<PostalCode>94704</PostalCode>
|
134
|
+
<CountryCode>US</CountryCode>
|
135
|
+
<CountryName>United States</CountryName>
|
136
|
+
<Residential>false</Residential>
|
137
|
+
</Address>
|
138
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
139
|
+
</Events>
|
140
|
+
<Events>
|
141
|
+
<Timestamp>2014-01-08T15:23:00-08:00</Timestamp>
|
142
|
+
<EventType>HP</EventType>
|
143
|
+
<EventDescription>Held at FedEx location for recipient pickup</EventDescription>
|
144
|
+
<StatusExceptionCode>015A</StatusExceptionCode>
|
145
|
+
<StatusExceptionDescription>Package available for pickup at FedEx Office: 2201 SHATTUCK AVE</StatusExceptionDescription>
|
146
|
+
<Address>
|
147
|
+
<StreetLines>2201 SHATTUCK AVE </StreetLines>
|
148
|
+
<City>BERKELEY</City>
|
149
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
150
|
+
<PostalCode>94704</PostalCode>
|
151
|
+
<CountryCode>US</CountryCode>
|
152
|
+
<CountryName>United States</CountryName>
|
153
|
+
<Residential>false</Residential>
|
154
|
+
</Address>
|
155
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
156
|
+
</Events>
|
157
|
+
<Events>
|
158
|
+
<Timestamp>2014-01-08T15:22:50-08:00</Timestamp>
|
159
|
+
<EventType>AF</EventType>
|
160
|
+
<EventDescription>At local FedEx facility</EventDescription>
|
161
|
+
<StatusExceptionCode>A3</StatusExceptionCode>
|
162
|
+
<StatusExceptionDescription>Tendered at FedEx Office</StatusExceptionDescription>
|
163
|
+
<Address>
|
164
|
+
<PostalCode>94577</PostalCode>
|
165
|
+
<CountryName>United States</CountryName>
|
166
|
+
<Residential>false</Residential>
|
167
|
+
</Address>
|
168
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
169
|
+
</Events>
|
170
|
+
<Events>
|
171
|
+
<Timestamp>2014-01-08T08:28:00-08:00</Timestamp>
|
172
|
+
<EventType>OD</EventType>
|
173
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
174
|
+
<Address>
|
175
|
+
<City>SAN LEANDRO</City>
|
176
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
177
|
+
<PostalCode>94577</PostalCode>
|
178
|
+
<CountryCode>US</CountryCode>
|
179
|
+
<CountryName>United States</CountryName>
|
180
|
+
<Residential>false</Residential>
|
181
|
+
</Address>
|
182
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
183
|
+
</Events>
|
184
|
+
<Events>
|
185
|
+
<Timestamp>2014-01-08T04:08:00-08:00</Timestamp>
|
186
|
+
<EventType>AR</EventType>
|
187
|
+
<EventDescription>At local FedEx facility</EventDescription>
|
188
|
+
<Address>
|
189
|
+
<City>SAN LEANDRO</City>
|
190
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
191
|
+
<PostalCode>94577</PostalCode>
|
192
|
+
<CountryCode>US</CountryCode>
|
193
|
+
<CountryName>United States</CountryName>
|
194
|
+
<Residential>false</Residential>
|
195
|
+
</Address>
|
196
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
197
|
+
</Events>
|
198
|
+
<Events>
|
199
|
+
<Timestamp>2014-01-07T11:22:33-08:00</Timestamp>
|
200
|
+
<EventType>DE</EventType>
|
201
|
+
<EventDescription>Delivery exception</EventDescription>
|
202
|
+
<StatusExceptionCode>A13</StatusExceptionCode>
|
203
|
+
<StatusExceptionDescription>Redirecting to FedEx Office</StatusExceptionDescription>
|
204
|
+
<Address>
|
205
|
+
<City>SAN LEANDRO</City>
|
206
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
207
|
+
<PostalCode>94577</PostalCode>
|
208
|
+
<CountryCode>US</CountryCode>
|
209
|
+
<CountryName>United States</CountryName>
|
210
|
+
<Residential>false</Residential>
|
211
|
+
</Address>
|
212
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
213
|
+
</Events>
|
214
|
+
<Events>
|
215
|
+
<Timestamp>2014-01-07T08:08:00-08:00</Timestamp>
|
216
|
+
<EventType>OD</EventType>
|
217
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
218
|
+
<Address>
|
219
|
+
<City>SAN LEANDRO</City>
|
220
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
221
|
+
<PostalCode>94577</PostalCode>
|
222
|
+
<CountryCode>US</CountryCode>
|
223
|
+
<CountryName>United States</CountryName>
|
224
|
+
<Residential>false</Residential>
|
225
|
+
</Address>
|
226
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
227
|
+
</Events>
|
228
|
+
<Events>
|
229
|
+
<Timestamp>2014-01-05T19:19:19-08:00</Timestamp>
|
230
|
+
<EventType>RR</EventType>
|
231
|
+
<EventDescription>Delivery option requested</EventDescription>
|
232
|
+
<StatusExceptionCode>A12</StatusExceptionCode>
|
233
|
+
<StatusExceptionDescription>Hold at FedEx location request received - Check back later for shipment status</StatusExceptionDescription>
|
234
|
+
<Address>
|
235
|
+
<PostalCode>94704</PostalCode>
|
236
|
+
<CountryName>United States</CountryName>
|
237
|
+
<Residential>false</Residential>
|
238
|
+
</Address>
|
239
|
+
<ArrivalLocation>ENROUTE</ArrivalLocation>
|
240
|
+
</Events>
|
241
|
+
<Events>
|
242
|
+
<Timestamp>2014-01-04T14:55:45-08:00</Timestamp>
|
243
|
+
<EventType>DE</EventType>
|
244
|
+
<EventDescription>Delivery exception</EventDescription>
|
245
|
+
<StatusExceptionCode>007</StatusExceptionCode>
|
246
|
+
<StatusExceptionDescription>Customer not available or business closed</StatusExceptionDescription>
|
247
|
+
<Address>
|
248
|
+
<City>SAN LEANDRO</City>
|
249
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
250
|
+
<PostalCode>94577</PostalCode>
|
251
|
+
<CountryCode>US</CountryCode>
|
252
|
+
<CountryName>United States</CountryName>
|
253
|
+
<Residential>false</Residential>
|
254
|
+
</Address>
|
255
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
256
|
+
</Events>
|
257
|
+
<Events>
|
258
|
+
<Timestamp>2014-01-04T08:58:00-08:00</Timestamp>
|
259
|
+
<EventType>OD</EventType>
|
260
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
261
|
+
<Address>
|
262
|
+
<City>SAN LEANDRO</City>
|
263
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
264
|
+
<PostalCode>94577</PostalCode>
|
265
|
+
<CountryCode>US</CountryCode>
|
266
|
+
<CountryName>United States</CountryName>
|
267
|
+
<Residential>false</Residential>
|
268
|
+
</Address>
|
269
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
270
|
+
</Events>
|
271
|
+
<Events>
|
272
|
+
<Timestamp>2014-01-03T14:51:07-08:00</Timestamp>
|
273
|
+
<EventType>DE</EventType>
|
274
|
+
<EventDescription>Delivery exception</EventDescription>
|
275
|
+
<StatusExceptionCode>007</StatusExceptionCode>
|
276
|
+
<StatusExceptionDescription>Customer not available or business closed</StatusExceptionDescription>
|
277
|
+
<Address>
|
278
|
+
<City>SAN LEANDRO</City>
|
279
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
280
|
+
<PostalCode>94577</PostalCode>
|
281
|
+
<CountryCode>US</CountryCode>
|
282
|
+
<CountryName>United States</CountryName>
|
283
|
+
<Residential>false</Residential>
|
284
|
+
</Address>
|
285
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
286
|
+
</Events>
|
287
|
+
<Events>
|
288
|
+
<Timestamp>2014-01-03T08:43:00-08:00</Timestamp>
|
289
|
+
<EventType>OD</EventType>
|
290
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
291
|
+
<Address>
|
292
|
+
<City>SAN LEANDRO</City>
|
293
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
294
|
+
<PostalCode>94577</PostalCode>
|
295
|
+
<CountryCode>US</CountryCode>
|
296
|
+
<CountryName>United States</CountryName>
|
297
|
+
<Residential>false</Residential>
|
298
|
+
</Address>
|
299
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
300
|
+
</Events>
|
301
|
+
<Events>
|
302
|
+
<Timestamp>2014-01-02T14:30:44-08:00</Timestamp>
|
303
|
+
<EventType>DE</EventType>
|
304
|
+
<EventDescription>Delivery exception</EventDescription>
|
305
|
+
<StatusExceptionCode>007</StatusExceptionCode>
|
306
|
+
<StatusExceptionDescription>Customer not available or business closed</StatusExceptionDescription>
|
307
|
+
<Address>
|
308
|
+
<City>SAN LEANDRO</City>
|
309
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
310
|
+
<PostalCode>94577</PostalCode>
|
311
|
+
<CountryCode>US</CountryCode>
|
312
|
+
<CountryName>United States</CountryName>
|
313
|
+
<Residential>false</Residential>
|
314
|
+
</Address>
|
315
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
316
|
+
</Events>
|
317
|
+
<Events>
|
318
|
+
<Timestamp>2014-01-02T09:05:00-08:00</Timestamp>
|
319
|
+
<EventType>OD</EventType>
|
320
|
+
<EventDescription>On FedEx vehicle for delivery</EventDescription>
|
321
|
+
<Address>
|
322
|
+
<City>SAN LEANDRO</City>
|
323
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
324
|
+
<PostalCode>94577</PostalCode>
|
325
|
+
<CountryCode>US</CountryCode>
|
326
|
+
<CountryName>United States</CountryName>
|
327
|
+
<Residential>false</Residential>
|
328
|
+
</Address>
|
329
|
+
<ArrivalLocation>VEHICLE</ArrivalLocation>
|
330
|
+
</Events>
|
331
|
+
<Events>
|
332
|
+
<Timestamp>2014-01-02T06:37:00-08:00</Timestamp>
|
333
|
+
<EventType>AR</EventType>
|
334
|
+
<EventDescription>At local FedEx facility</EventDescription>
|
335
|
+
<Address>
|
336
|
+
<City>SAN LEANDRO</City>
|
337
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
338
|
+
<PostalCode>94577</PostalCode>
|
339
|
+
<CountryCode>US</CountryCode>
|
340
|
+
<CountryName>United States</CountryName>
|
341
|
+
<Residential>false</Residential>
|
342
|
+
</Address>
|
343
|
+
<ArrivalLocation>DESTINATION_FEDEX_FACILITY</ArrivalLocation>
|
344
|
+
</Events>
|
345
|
+
<Events>
|
346
|
+
<Timestamp>2013-12-31T15:26:00-08:00</Timestamp>
|
347
|
+
<EventType>AR</EventType>
|
348
|
+
<EventDescription>Arrived at FedEx location</EventDescription>
|
349
|
+
<Address>
|
350
|
+
<City>SACRAMENTO</City>
|
351
|
+
<StateOrProvinceCode>CA</StateOrProvinceCode>
|
352
|
+
<PostalCode>95824</PostalCode>
|
353
|
+
<CountryCode>US</CountryCode>
|
354
|
+
<CountryName>United States</CountryName>
|
355
|
+
<Residential>false</Residential>
|
356
|
+
</Address>
|
357
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
358
|
+
</Events>
|
359
|
+
<Events>
|
360
|
+
<Timestamp>2013-12-27T15:46:20-06:00</Timestamp>
|
361
|
+
<EventType>DP</EventType>
|
362
|
+
<EventDescription>Departed FedEx location</EventDescription>
|
363
|
+
<Address>
|
364
|
+
<City>NASHVILLE</City>
|
365
|
+
<StateOrProvinceCode>TN</StateOrProvinceCode>
|
366
|
+
<PostalCode>37207</PostalCode>
|
367
|
+
<CountryCode>US</CountryCode>
|
368
|
+
<CountryName>United States</CountryName>
|
369
|
+
<Residential>false</Residential>
|
370
|
+
</Address>
|
371
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
372
|
+
</Events>
|
373
|
+
<Events>
|
374
|
+
<Timestamp>2013-12-27T00:42:00-06:00</Timestamp>
|
375
|
+
<EventType>AR</EventType>
|
376
|
+
<EventDescription>Arrived at FedEx location</EventDescription>
|
377
|
+
<Address>
|
378
|
+
<City>NASHVILLE</City>
|
379
|
+
<StateOrProvinceCode>TN</StateOrProvinceCode>
|
380
|
+
<PostalCode>37207</PostalCode>
|
381
|
+
<CountryCode>US</CountryCode>
|
382
|
+
<CountryName>United States</CountryName>
|
383
|
+
<Residential>false</Residential>
|
384
|
+
</Address>
|
385
|
+
<ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
|
386
|
+
</Events>
|
387
|
+
<Events>
|
388
|
+
<Timestamp>2013-12-26T20:59:00-06:00</Timestamp>
|
389
|
+
<EventType>PU</EventType>
|
390
|
+
<EventDescription>Picked up</EventDescription>
|
391
|
+
<Address>
|
392
|
+
<City>NASHVILLE</City>
|
393
|
+
<StateOrProvinceCode>TN</StateOrProvinceCode>
|
394
|
+
<PostalCode>37207</PostalCode>
|
395
|
+
<CountryCode>US</CountryCode>
|
396
|
+
<CountryName>United States</CountryName>
|
397
|
+
<Residential>false</Residential>
|
398
|
+
</Address>
|
399
|
+
<ArrivalLocation>PICKUP_LOCATION</ArrivalLocation>
|
400
|
+
</Events>
|
401
|
+
</TrackDetails>
|
402
|
+
</CompletedTrackDetails>
|
403
|
+
</TrackReply>
|