|
| 1 | +#!/usr/bin/env python |
| 2 | +""" |
| 3 | +This example shows how to create a pickup request |
| 4 | +""" |
| 5 | +import datetime |
| 6 | + |
| 7 | +from example_config import CONFIG_OBJ |
| 8 | +from fedex.services.pickup_service import FedexCreatePickupRequest |
| 9 | + |
| 10 | +customer_transaction_id = "*** PickupService Request v11 using Python ***" # Optional transaction_id |
| 11 | +pickup_service = FedexCreatePickupRequest(CONFIG_OBJ, customer_transaction_id) |
| 12 | + |
| 13 | +pickup_service.OriginDetail.PickupLocation.Contact.PersonName = 'Sender Name' |
| 14 | +pickup_service. OriginDetail. PickupLocation. Contact. EMailAddress = '[email protected]' |
| 15 | +pickup_service.OriginDetail.PickupLocation.Contact.CompanyName = 'Acme Inc.' |
| 16 | +pickup_service.OriginDetail.PickupLocation.Contact.PhoneNumber = '9012638716' |
| 17 | +pickup_service.OriginDetail.PickupLocation.Address.StateOrProvinceCode = 'SC' |
| 18 | +pickup_service.OriginDetail.PickupLocation.Address.PostalCode = '29631' |
| 19 | +pickup_service.OriginDetail.PickupLocation.Address.CountryCode = 'US' |
| 20 | +pickup_service.OriginDetail.PickupLocation.Address.StreetLines = ['155 Old Greenville Hwy', 'Suite 103'] |
| 21 | +pickup_service.OriginDetail.PickupLocation.Address.City = 'Clemson' |
| 22 | +# pickup_service.OriginDetail.PickupLocation.Address.UrbanizationCode = '' # For Puerto Rico only |
| 23 | +pickup_service.OriginDetail.PickupLocation.Address.Residential = False |
| 24 | + |
| 25 | +# FRONT, NONE, REAR, SIDE |
| 26 | +# pickup_service.OriginDetail.PackageLocation = 'NONE' |
| 27 | + |
| 28 | +# APARTMENT, BUILDING, DEPARTMENT, FLOOR, ROOM, SUITE |
| 29 | +# pickup_service.OriginDetail.BuildingPart = 'SUITE' |
| 30 | + |
| 31 | +# Identifies the date and time the package will be ready for pickup by FedEx. |
| 32 | +pickup_service.OriginDetail.ReadyTimestamp = datetime.datetime.now().replace(microsecond=0).isoformat() |
| 33 | + |
| 34 | +# Identifies the latest time at which the driver can gain access to pick up the package(s) |
| 35 | +pickup_service.OriginDetail.CompanyCloseTime = '23:00:00' |
| 36 | + |
| 37 | +pickup_service.CarrierCode = 'FDXE' |
| 38 | + |
| 39 | +pickup_service.TotalWeight.Units = 'LB' |
| 40 | +pickup_service.TotalWeight.Value = '1' |
| 41 | +pickup_service.PackageCount = '1' |
| 42 | +# pickup_service.OversizePackageCount = '1' |
| 43 | + |
| 44 | +# pickup_service.CommodityDescription = '' |
| 45 | + |
| 46 | +# DOMESTIC or INTERNATIONAL |
| 47 | +# pickup_service.CountryRelationship = 'DOMESTIC' |
| 48 | + |
| 49 | +# See PickupServiceCategoryType |
| 50 | +# pickup_service.PickupServiceCategory = 'FEDEX_DISTANCE_DEFERRED' |
| 51 | + |
| 52 | +pickup_service.send_request() |
| 53 | + |
| 54 | +print pickup_service.response.HighestSeverity == 'SUCCESS' |
| 55 | +print pickup_service.response.Notifications[0].Message |
0 commit comments