├── .gitignore ├── LICENSE ├── README.md ├── USPS ├── USPS.py └── __init__.py ├── __init__.py ├── endicia.py ├── fedex.py ├── iso_country_codes.py ├── shipping.py ├── test.py ├── test_tshroyer.py ├── tests ├── __init__.py ├── config.example.py ├── config.py ├── fedex.py ├── ups.py └── usps.py ├── ups.py └── wsdl ├── fedex ├── CreatePendingShipmentReply_Smash_Email_Ret.txt ├── CreatePendingShipmentRequest_Smash_Email_Ret.txt ├── ProcessShipmentReply_Condor_EMEA_ADG_IEF.txt ├── ProcessShipmentReply_Condor_Sat_Del.txt ├── ProcessShipmentReply_Condor_Sat_Pickup_IPF.txt ├── ProcessShipmentReply_Condor_US_CA_ADG_IE.txt ├── ProcessShipmentReply_DE_HAL.txt ├── ProcessShipmentReply_DE_HAL_Sig_Opt_A.txt ├── ProcessShipmentReply_DG_HAL.txt ├── ProcessShipmentReply_DG_HAL_Sig_Opt_A.txt ├── ProcessShipmentReply_F2_Sat_Pickup.txt ├── ProcessShipmentReply_Intra_CH_PO.txt ├── ProcessShipmentReply_Intra_MX_Exp_Saver.txt ├── ProcessShipmentReply_Intra_UAE_SO.txt ├── ProcessShipmentReply_Prio_Alrt_Frgt.txt ├── ProcessShipmentReply_Smash_Basic.txt ├── ProcessShipmentReply_Smash_Prnt_Ret.txt ├── ProcessShipmentRequest_Condor_EMEA_ADG_IEF.txt ├── ProcessShipmentRequest_Condor_Sat_Del.txt ├── ProcessShipmentRequest_Condor_Sat_Pickup_IPF.txt ├── ProcessShipmentRequest_Condor_US_CA_ADG_IE.txt ├── ProcessShipmentRequest_DE_HAL.txt ├── ProcessShipmentRequest_DE_HAL_Sig_Opt_A.txt ├── ProcessShipmentRequest_DG_HAL.txt ├── ProcessShipmentRequest_DG_HAL_Sig_Opt_A.txt ├── ProcessShipmentRequest_F2_Sat_Pickup.txt ├── ProcessShipmentRequest_Intra_CH_PO.txt ├── ProcessShipmentRequest_Intra_MX_Exp_Saver.txt ├── ProcessShipmentRequest_Intra_UAE_SO.txt ├── ProcessShipmentRequest_Prio_Alrt_Frgt.txt ├── ProcessShipmentRequest_Smash_Basic.txt ├── ProcessShipmentRequest_Smash_Prnt_Ret.txt ├── RateReply_DE_HAL_Sig_Opt_A.txt ├── RateReply_DG_HAL.txt ├── RateReply_DG_HAL_Sig_Opt_A.txt ├── RateReply_EMEA_ADG_IEF.txt ├── RateReply_F2_Sat_Pickup.txt ├── RateReply_Intra_CH_PO.txt ├── RateReply_Intra_MX_Exp_Saver.txt ├── RateReply_Intra_UAE_SO.txt ├── RateReply_Prio_Alrt_Frgt.txt ├── RateReply_Sat_Del.txt ├── RateReply_Sat_Pickup_IPF.txt ├── RateReply_SmartPost_Basic.txt ├── RateReply_SmartPost_Prnt_Ret.txt ├── RateReply_US_CA_ADG_IE.txt ├── RateReplyt_DE_HAL.txt ├── RateRequest_DE_HAL.txt ├── RateRequest_DE_HAL_Sig_Opt_A.txt ├── RateRequest_DG_HAL.txt ├── RateRequest_DG_HAL_Sig_Opt_A.txt ├── RateRequest_EMEA_ADG_IEF.txt ├── RateRequest_F2_Sat_Pickup.txt ├── RateRequest_Intra_CH_PO.txt ├── RateRequest_Intra_MX_Exp_Saver.txt ├── RateRequest_Intra_UAE_SO.txt ├── RateRequest_Prio_Alrt_Frgt.txt ├── RateRequest_Sat_Del.txt ├── RateRequest_Sat_Pickup_IPF.txt ├── RateRequest_SmartPost_Basic.txt ├── RateRequest_SmartPost_Prnt_Ret.txt ├── RateRequest_US_CA_ADG_IE.txt ├── RateService_v9.wsdl └── ShipService_v9.wsdl └── ups ├── Error1.1.xsd ├── IFWS.xsd ├── RateWS.wsdl ├── RateWebServiceSchema.xsd ├── Ship.wsdl ├── ShipWebServiceSchema.xsd ├── UPSSecurity.xsd ├── Void.wsdl ├── VoidWebServiceSchema.xsd ├── XAV.wsdl ├── XAVWebServiceSchema.xsd └── common.xsd /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | test_config.py 3 | *.swp 4 | tests/config.py 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Ben 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is my extremely early version of providing a shipment API in Python. 2 | 3 | UPS: Ground shipping almost complete 4 | USPS: Rate query complete, delivery confirmation almost complete 5 | FedEx: Not implemented 6 | 7 | 8 | ups_config and fedex_config dictionaries: 9 | 10 | fedex_config = { 11 | 'meter_number': 'FedEx Meter Number', 12 | 'password': 'FedEx API password', 13 | 'account_number': 'FedEx Account Number', 14 | 'key': 'FedEx API Key' 15 | } 16 | 17 | ups_config = { 18 | 'username': 'UPS Online Username', 19 | 'password': 'UPS Online Password', 20 | 'shipper_number': 'UPS Shipper Number', 21 | 'access_license': 'UPS API License' 22 | } 23 | 24 | 25 | USPS Domestic Shipping Rate Example 26 | =================================== 27 | 28 | The USPS module uses Endicia to calculate shipping rates and generate labels. For this example, we'll need to import the Package and Endicia classes from the `endicia` module and the Address class from the `shipping` module: 29 | 30 | from endicia import Package, Endicia 31 | from shipping import Address 32 | 33 | To calculate shipping or generate a label, you have to first create a Package object: 34 | 35 | # Separate variables for the sake of clarity. 36 | mail_class = Package.shipment_types[0] # "Priority" 37 | weight_in_oz = 20 38 | packaging_shape = Package.shapes[1] # "MediumFlatRateBox" 39 | length = 10 # inches 40 | width = 10 # inches 41 | height = 10 # inches 42 | 43 | package = Package(mail_class, weight_in_oz, packaging_shape, length, width, height) 44 | 45 | You also need to create Address objects to represent the address you are shipping from and the address you are shipping to: 46 | 47 | shipper = Address('Microsoft', "1 157th Ave NE", 'Redmond', 'WA', 98052, 'US') 48 | recipient = Address("Apple", "1 Infinite Loop", 'Cupertino', 'CA', 95014, 'US') 49 | 50 | And finally, you need to create an Endicia object and pass your authentication info, package, and addresses to it: 51 | 52 | api = Endicia({ 53 | "partner_id": "", 54 | "account_id": "000000", # Your account ID. Has to be a six-digit value. 55 | "passphrase": "" 56 | }) 57 | 58 | Then you are free to call whatever API functions on the Endicia object you like. In this example, we want the `rate` function: 59 | 60 | shipping_rate = api.rate([package], package.shape, shipper, recipient, debug=True) 61 | 62 | Which should put something like this in `shipping_rate`: 63 | 64 | { 65 | 'status': 0, 66 | 'info': [ 67 | { 68 | 'delivery_day': '', 69 | 'cost': 11.3, 70 | 'service': Priority Mail Medium Flat Rate Box, 71 | 'package': Priority 72 | }, 73 | { 74 | 'delivery_day': '', 75 | 'cost': 39.95, 76 | 'service': Priority Mail Express Flat Rate Box, 77 | 'package': Express 78 | } 79 | ] 80 | } 81 | -------------------------------------------------------------------------------- /USPS/__init__.py: -------------------------------------------------------------------------------- 1 | from USPS import Address, Package 2 | from USPS import RateRequest, RateResponse, DeliveryConfirmationRequest, DeliveryConfirmationResponse, ExpressMailRequest, ExpressMailResponse -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 'UPS', 'USPS', 'endicia', 'common' ] -------------------------------------------------------------------------------- /shipping.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | def debug_print_tree(elem): 4 | import xml.etree.ElementTree as etree 5 | from xml.dom.minidom import parseString 6 | node = parseString(etree.tostring(elem).replace('\n', '')) 7 | print(node.toprettyxml(indent=" ")) 8 | 9 | import logging 10 | def setLoggingLevel(level = logging.ERROR): 11 | """ Convenience function to set all the logging in one place """ 12 | logging.getLogger('%s.ups' % __name__).setLevel(level) 13 | logging.getLogger('%s.fedex' % __name__).setLevel(level) 14 | logging.getLogger('%s.endicia' % __name__).setLevel(level) 15 | logging.getLogger('suds.client').setLevel(level) 16 | logging.getLogger('suds.transport').setLevel(level) 17 | logging.getLogger('suds.xsd.schema').setLevel(level) 18 | logging.getLogger('suds.wsdl').setLevel(level) 19 | 20 | class Package(object): 21 | def __init__(self, weight_in_ozs, length='', width='', height='', value=0, require_signature=False, reference=u''): 22 | self.weight = weight_in_ozs / 16 23 | self.length = length 24 | self.width = width 25 | self.height = height 26 | self.value = value 27 | self.require_signature = require_signature 28 | self.reference = reference 29 | 30 | @property 31 | def weight_in_ozs(self): 32 | return self.weight * 16 33 | 34 | @property 35 | def weight_in_lbs(self): 36 | return self.weight 37 | 38 | class Product(object): 39 | def __init__(self, **kwargs): 40 | for key, value in kwargs.items(): 41 | setattr(self, key, value) 42 | 43 | 44 | class Address(object): 45 | def __init__(self, name, address, city, state, zip, country, address2='', phone='', email='', is_residence=True, company_name=''): 46 | self.company_name = company_name or '' 47 | self.name = name or '' 48 | self.address1 = address or '' 49 | self.address2 = address2 or '' 50 | self.city = city or '' 51 | self.state = state or '' 52 | self.zip = re.sub('[^\w]', '', unicode(zip).split('-')[0]) if zip else '' 53 | self.country = country or '' 54 | self.phone = re.sub('[^0-9]*', '', unicode(phone)) if phone else '' 55 | self.email = email or '' 56 | self.is_residence = is_residence or False 57 | 58 | def __eq__(self, other): 59 | return vars(self) == vars(other) 60 | 61 | def __repr__(self): 62 | street = self.address1 63 | if self.address2: 64 | street += '\n' + self.address2 65 | return '%s\n%s\n%s, %s %s %s' % (self.name, street, self.city, self.state, self.zip, self.country) 66 | 67 | def get_country_code(country): 68 | lookup = { 69 | 'us': 'US', 70 | 'usa': 'US', 71 | 'united states': 'US', 72 | 'canada': 'CA', 73 | 'ca': 'CA' 74 | } 75 | 76 | return lookup.get(country.lower(), country) -------------------------------------------------------------------------------- /test_tshroyer.py: -------------------------------------------------------------------------------- 1 | from shipping import Address 2 | from shipping import Package 3 | from ups import PACKAGES 4 | import logging 5 | logging.basicConfig(level=logging.ERROR) 6 | from shipping import setLoggingLevel 7 | setLoggingLevel(logging.ERROR) 8 | logging.getLogger('%s.ups' % __name__).setLevel(logging.DEBUG) 9 | 10 | 11 | white_house = Address('Mr. President', '1600 Pennsylvania Avenue NW', 'Washington', 'DC', '20500', 'US', company_name='White House') 12 | powells = Address('Manager', '1005 W Burnside', 'Portland', 'OR', '97209', 'US', is_residence = False, company_name='Powell\'s City of Books') 13 | our_place = Address('Wholesale Imports Guy', '4957 Summer Ave', 'Memphis', 'TN', '38122', 'US', company_name='WholesaleImport.com') 14 | 15 | from wholesale import config 16 | ups_config = config.getConfig('ups') 17 | 18 | from ups import UPS 19 | ups = UPS(ups_config, debug=False) 20 | print(white_house) 21 | print(ups.validate(white_house)) 22 | 23 | print(powells) 24 | print(ups.validate(powells)) 25 | 26 | ten_pound_box = Package(10.0 * 16, 12, 12, 12, value=100, require_signature=3, reference='a12302b') 27 | our_packaging = PACKAGES[0][0] 28 | 29 | # Send some books to powells because they need some more 30 | print(ups.rate([ten_pound_box], our_packaging, our_place, powells)) 31 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | import os, tempfile 2 | import ups 3 | 4 | def _show_file(extension, data): 5 | with tempfile.NamedTemporaryFile(suffix=extension, delete=False) as temp_file: 6 | temp_file.write(data) 7 | os.system('open %s' % temp_file.name) 8 | 9 | -------------------------------------------------------------------------------- /tests/config.example.py: -------------------------------------------------------------------------------- 1 | # Production config dictionaries. 2 | UPSConfig = { 3 | "username": "", 4 | "password": "", 5 | "access_license": "", 6 | "shipper_number": "" 7 | } 8 | 9 | FedexConfig = { 10 | "key": "", 11 | "password": "", 12 | "account_number": "", 13 | "meter_number": "", 14 | "access_license": "", 15 | } 16 | 17 | EndiciaConfig = { 18 | "partner_id": "", 19 | "account_id": "", 20 | "passphrase": "" 21 | } 22 | 23 | # Test config dictionaries. 24 | UPSTestConfig = { 25 | "username": "", 26 | "password": "", 27 | "access_license": "", 28 | "shipper_number": "" 29 | } 30 | 31 | FedexTestConfig = { 32 | "key": "", 33 | "password": "", 34 | "account_number": "", 35 | "meter_number": "", 36 | "access_license": "", 37 | } 38 | 39 | EndiciaTestConfig = { 40 | "partner_id": "", 41 | "account_id": "000000", 42 | "passphrase": "" 43 | } 44 | -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- 1 | # Production config dictionaries. 2 | UPSConfig = { 3 | "username": "", 4 | "password": "", 5 | "access_license": "", 6 | "shipper_number": "" 7 | } 8 | 9 | FedexConfig = { 10 | "key": "", 11 | "password": "", 12 | "account_number": "", 13 | "meter_number": "", 14 | "access_license": "", 15 | } 16 | 17 | EndiciaConfig = { 18 | "partner_id": "", 19 | "account_id": "", 20 | "passphrase": "" 21 | } 22 | 23 | # Test config dictionaries. 24 | UPSTestConfig = { 25 | "username": "", 26 | "password": "", 27 | "access_license": "", 28 | "shipper_number": "" 29 | } 30 | 31 | FedexTestConfig = { 32 | "key": "", 33 | "password": "", 34 | "account_number": "", 35 | "meter_number": "", 36 | "access_license": "", 37 | } 38 | 39 | EndiciaTestConfig = { 40 | "partner_id": "", 41 | "account_id": "000000", 42 | "passphrase": "" 43 | } 44 | -------------------------------------------------------------------------------- /tests/ups.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | import logging 4 | 5 | try: 6 | from .config import UPSTestConfig 7 | except ImportError: 8 | logging.error("Could not find UPSTestConfig in tests.config module.") 9 | exit(1) 10 | 11 | import unittest 12 | from shipping import Package, Address, Product 13 | import sys 14 | sys.path.append('../') 15 | 16 | import ups 17 | 18 | # TODO: Split this up further. Should be one assert per function, and domestic 19 | # and international tests should probably be two different TestCase classes. 20 | 21 | class TestUPS(unittest.TestCase): 22 | def setUp(self): 23 | self.api = ups.UPS(UPSTestConfig, debug=True) 24 | self.shipper = Address('Adobe', "345 Park Avenue", 'San Jose', 'CA', 95110, 'US', phone='5122901212', email='ben@ordoro.com') 25 | self.test_email = 'test@mytrashmail.com' 26 | 27 | def TestIntl(self): 28 | recipients = [ 29 | Address('Bazaarvoice', 'One Lyric Square', 'London', '', 'W6 0NB', 'GB', phone='+44 (0)208 080', email='ben@ordoro.com'), 30 | Address('Some Recipient', '24 Tennant st', 'EDINBURGH', 'Midlothian', 'EH6 5ND', 'GB', phone='+44 (0)208 080', email='ben@ordoro.com') 31 | ] 32 | packages = [ 33 | Package(2.0 * 16, 12, 12, 12, value=100, require_signature=2, reference='a12302b') 34 | ] 35 | products = [ 36 | Product(total=10, value=2, quantity=5, description='It\'s just a bunch of widgets', country = 'CA'), 37 | Product(total=10, value=2, quantity=5, description='It\'s just a bunch of widgets', country = 'CA') 38 | ] 39 | 40 | for recipient in recipients: 41 | validate = True 42 | recipient.is_residence = True 43 | response = self.api.label(intl_packages, self.shipper, recipient, ups.SERVICES[9][0], ups.PACKAGES[5][0], validate, [ self.test_email ], create_commercial_invoice=True, customs_info=products) 44 | self.assertIn("status", response) 45 | self.assertIn("shipments", response) 46 | 47 | for info in response['shipments']: 48 | self.assertIn("tracking_number", info) 49 | self.assertIn("cost", info) 50 | 51 | def TestDomestic(self): 52 | # Test 'validate' function. 53 | recipient = Address('Apple', "1 Infinite Loop", 'Cupertino', 'CA', 95014, 'US', phone='5122901212', email='ben@ordoro.com') 54 | self.assertTrue(self.api.validate(recipient)["valid"], msg = "UPS thinks Apple's HQ address isn't valid.") 55 | 56 | bad_recipient = Address('Apple', "1 Park Place.", 'San Diego', 'CA', 95014, 'US', phone='5122901212', email='ben@ordoro.com', address2='#502') 57 | self.assertFalse(self.api.validate(bad_recipient)["valid"], msg = "UPS thinks our invalid address is valid.") 58 | 59 | # Test 'label' function. 60 | validate = False 61 | recipient.is_residence = True 62 | package = Package(20.0 * 16, 12, 12, 12, value=1000, require_signature=3, reference='a12302b') 63 | response = self.api.label([package], self.shipper, recipient, ups.SERVICES[2][0], ups.PACKAGES[7][0], validate, [ self.test_email ]) 64 | status = response['status'] 65 | self.assertIn("shipments", response) 66 | 67 | for shipment in response['shipments']: 68 | self.assertIn("tracking_number", shipment) 69 | self.assertIn("cost", shipment) 70 | 71 | # Test 'rate' function. 72 | for package_type in ups.PACKAGES: 73 | package_code = package_type[0] 74 | response = self.api.rate(packages, package_code, shipper, r) 75 | -------------------------------------------------------------------------------- /tests/usps.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | import logging 4 | 5 | try: 6 | from .config import EndiciaTestConfig 7 | except ImportError: 8 | logging.error("Could not find EndiciaTestConfig in tests.config module.") 9 | exit(1) 10 | 11 | from . import _show_file 12 | import unittest 13 | from shipping import Package, Address 14 | import sys 15 | sys.path.append('../') 16 | 17 | import endicia 18 | 19 | TEST_TRACKING_NO = "WTC123456789" 20 | 21 | class TestEndicia(unittest.TestCase): 22 | def setUp(self): 23 | self.api = endicia.Endicia(EndiciaTestConfig, debug=True) 24 | self.shipper = Address( 25 | 'Adobe', "345 Park Avenue", 'San Jose', 'CA', 95110, 'US', 26 | phone='5122901212', email='ben@ordoro.com' 27 | ) 28 | self.recipient = Address( 29 | 'Apple', "1 Infinite Loop", 'Cupertino', 'CA', 95014, 'US', 30 | phone='5122901212', email='ben@ordoro.com' 31 | ) 32 | self.intl_recipient = Address( 33 | 'Apple Canada', "7495 Birchmount Road", 'Markham', 'ON', "L3R 5G2", 'CA', 34 | phone='9055135800', email='ben@ordoro.com' 35 | ) 36 | self.package = endicia.Package( 37 | endicia.Package.shipment_types[0], 3, 38 | endicia.Package.shapes[1], 10, 10, 10 39 | ) 40 | 41 | def testIntlLabel(self): 42 | package_intl = endicia.Package( 43 | endicia.Package.international_shipment_types[0], 20, 44 | endicia.Package.shapes[3], 10, 10, 10 45 | ) 46 | customs = [ 47 | endicia.Customs('Thing 1', 1, 2, 100, 'United States'), 48 | endicia.Customs('Thing 2', 10, 16, 80, 'Canada') 49 | ] 50 | label = self.api.label(package_intl, self.shipper, self.intl_recipient, 51 | contents_type='Merchandise', customs_info=customs, 52 | image_format="GIF" # Only GIF is valid for international labels. 53 | ) 54 | self.assertFalse(isinstance(label, endicia.Error), msg=label.message) 55 | 56 | 57 | def testLabel(self): 58 | label = self.api.label(self.package, self.shipper, self.recipient) 59 | self.assertFalse(isinstance(label, endicia.Error), msg=getattr(label, 'message', None)) 60 | 61 | def testUnstealthyLabel(self): 62 | label = self.api.label(self.package, self.shipper, self.recipient, stealth=False) 63 | self.assertFalse(isinstance(label, endicia.Error), msg=getattr(label, 'message', None)) 64 | 65 | def testInsuredLabel(self): 66 | label = self.api.label(self.package, self.shipper, self.recipient, insurance='ENDICIA', insurance_amount=1.0) 67 | self.assertFalse(isinstance(label, endicia.Error), msg=getattr(label, 'message', None)) 68 | 69 | def testRate(self): 70 | packages = [ self.package ] 71 | 72 | for shape in endicia.Package.shapes: 73 | rate = self.api.rate(packages, self.shipper, self.recipient) 74 | self.assertEqual(rate["status"], 0) 75 | self.assertIn("info", rate) 76 | 77 | for item in rate["info"]: 78 | self.assertIn("cost", item) 79 | 80 | def testCancel(self): 81 | response = self.api.cancel(TEST_TRACKING_NO, self.shipper) 82 | self.assertFalse(isinstance(response, endicia.Error), msg=getattr(response, 'message', None)) 83 | self.assertEqual(response.status, 0) 84 | 85 | # # Account Status 86 | # request = endicia.AccountStatusRequest(EndiciaPartnerID, EndiciaAccountID, EndiciaPassphrase, debug=debug) 87 | # response = request.send() 88 | # print response 89 | 90 | # # Recredit 91 | # request = endicia.RecreditRequest(EndiciaPartnerID, EndiciaAccountID, EndiciaPassphrase, 10.00, debug=debug) 92 | # response = request.send() 93 | # print response 94 | 95 | # Change Password 96 | # request = endicia.ChangePasswordRequest(EndiciaPartnerID, EndiciaAccountID, EndiciaPassphrase, 'ord7oro', debug=debug) 97 | # response = request.send() 98 | # print response 99 | 100 | # Refund 101 | # request = endicia.RefundRequest(EndiciaPartnerID, EndiciaAccountID, EndiciaPassphrase, tracking_number, debug=debug) 102 | # response = request.send() 103 | # print response 104 | 105 | if __name__ == '__main__': 106 | TestEndicia() 107 | -------------------------------------------------------------------------------- /wsdl/fedex/CreatePendingShipmentReply_Smash_Email_Ret.txt: -------------------------------------------------------------------------------- 1 | 2 | SUCCESSSUCCESSship0000SuccessSuccessCreatePendingShipmentRequest_Smash_Email_Retship900trueFXSPSMART POSTYOUR_PACKAGING00TWO_DAYSEIGHT_DAYShttps://wwwdrt.idev.fedex.com/OnlineLabel/login.do?labelUserCdDesc=FedEx-WAPI&labelPasswordDesc=8jXBIJCWSeFedEx-WAPI8jXBIJCWSefalse1USPS9158778778778600250958GROUND0417711150084300SERVICE_DEFAULT 3 | -------------------------------------------------------------------------------- /wsdl/fedex/CreatePendingShipmentRequest_Smash_Email_Ret.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | CreatePendingShipmentRequest_Smash_Email_Ret 16 | 17 | 18 | ship 19 | 9 20 | 0 21 | 0 22 | 23 | 24 | 2010-08-16T09:30:47-05:00 25 | REGULAR_PICKUP 26 | SMART_POST 27 | YOUR_PACKAGING 28 | 29 | KG 30 | 10.0 31 | 32 | 33 | 34 | 35 | FEDEX 36 | FEDEX 37 | FedEx-WAPI 38 | 1234567890 39 | 40 |
41 | String 42 | Texas 43 | TX 44 | 73301 45 | String 46 | US 47 |
48 |
49 | 50 | 51 | 52 | Recipient Contact 53 | FEDEX 54 | 1234567890 55 | 56 |
57 | String 58 | Texas 59 | TN 60 | 38017 61 | String 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | US 70 | 71 | 72 | 73 | RETURN_SHIPMENT 74 | PENDING_SHIPMENT 75 | 76 | PENDING 77 | 78 | 15987456320 79 | String 80 | 81 | 82 | 1234567890 83 | 84 | 85 | 86 | EMAIL 87 | 2010-08-16 88 | 89 | vikas_saini@syntelinc.com 90 | shipmentisdonetracpending 91 | 92 | 93 | 94 | 95 | PARCEL_RETURN 96 | ADDRESS_CORRECTION 97 | 5531 98 | 99 | 100 | COMMON2D 101 | PNG 102 | PAPER_4X6 103 | 104 | ACCOUNT 105 | 1 106 | INDIVIDUAL_PACKAGES 107 | 108 | 1 109 | 110 | LB 111 | 2.0 112 | 113 | 114 | 6 115 | 4 116 | 3 117 | IN 118 | 119 | String 120 | 121 | CUSTOMER_REFERENCE 122 | String 123 | 124 | 125 | String 126 | String 127 | 1 128 | String 129 | 130 | 131 |
132 |
133 |
134 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_Sat_Del.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORship8404Saturday Delivery is not allowed.Saturday Delivery is not allowed.WARNINGship3040Shipper Postal-City MismatchShipper Postal-City MismatchWARNINGship8266Origin Location-Postal Mismatch.Origin Location-Postal Mismatch.ProcessShipmentRequest_Condor_Sat_Delship900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORship8277Saturday Pickup is not allowed.Saturday Pickup is not allowed.ProcessShipmentRequest_Condor_Sat_Pickup_IPFship900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORship8001Meter number is not registeredMeter number is not registeredProcessShipmentRequest_Intra_UAE_SOship900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORship8336Service type not valid with commitment.Service type not valid with commitment.WARNINGship2469shipTimestamp is invalidshipTimestamp is invalidProcessShipmentRequest_Prio_Alrt_Frgtship900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Condor_EMEA_ADG_IEF 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_ECONOMY_FREIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Abhay 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Houston 42 | TX 43 | 77216 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | London 58 | GB 59 | EC1 60 | GB 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | 1 72 | 2 73 | 123asd789 74 | 75 | 76 | 77 | SENDER 78 | 79 | 150067065 80 | US 81 | 82 | 83 | DOCUMENTS_ONLY 84 | 85 | USD 86 | 100.00 87 | 88 | 89 | FOB_OR_FCA 90 | 91 | 92 | 1 93 | ABCD 94 | US 95 | 96 | LB 97 | 1.0 98 | 99 | 1 100 | cm 101 | 102 | USD 103 | 1.000000 104 | 105 | 106 | USD 107 | 100.000000 108 | 109 | 110 | 111 | 30.37(f) 112 | 113 | 114 | 115 | COMMON2D 116 | PNG 117 | PAPER_7X4.75 118 | 119 | ACCOUNT 120 | 1 121 | INDIVIDUAL_PACKAGES 122 | 123 | 1 124 | 125 | LB 126 | 180.0 127 | 128 | 129 | 12 130 | 12 131 | 12 132 | IN 133 | 134 | 135 | CUSTOMER_REFERENCE 136 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 137 | 138 | 139 | DANGEROUS_GOODS 140 | 141 | ACCESSIBLE 142 | 143 | 144 | 145 |
146 |
147 |
148 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Del.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_Condor_Sat_Del 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-03-19T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FIRST_OVERNIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | SATURDAY_DELIVERY 74 | 75 | 76 | COMMON2D 77 | PNG 78 | PAPER_4X6 79 | 80 | ACCOUNT 81 | 1 82 | INDIVIDUAL_PACKAGES 83 | 84 | 1 85 | 86 | LB 87 | 20.0 88 | 89 | 90 | 12 91 | 12 92 | 12 93 | IN 94 | 95 | 96 | 123445 97 | kjdjalsro1262739827 98 | 12 99 | ContentDescription 100 | 101 | 102 |
103 |
104 |
105 |
106 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Condor_Sat_Pickup_IPF 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_PRIORITY_FREIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Sender_Name 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Detroit 42 | MI 43 | 48208 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | Edmonton 58 | AB 59 | T5A1 60 | CA 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | SATURDAY_PICKUP 72 | 73 | 74 | 1 75 | 2 76 | 123asd789 77 | 78 | 79 | 80 | SENDER 81 | 82 | 150067065 83 | US 84 | 85 | 86 | DOCUMENTS_ONLY 87 | 88 | USD 89 | 100.00 90 | 91 | 92 | FOB_OR_FCA 93 | 94 | 95 | 1 96 | ABCD 97 | US 98 | 99 | LB 100 | 1.0 101 | 102 | 1 103 | cm 104 | 105 | USD 106 | 1.000000 107 | 108 | 109 | USD 110 | 100.000000 111 | 112 | 113 | 114 | 30.37(f) 115 | 116 | 117 | 118 | COMMON2D 119 | PNG 120 | PAPER_7X4.75 121 | 122 | ACCOUNT 123 | 1 124 | INDIVIDUAL_PACKAGES 125 | 126 | 1 127 | 128 | LB 129 | 180.0 130 | 131 | 132 | 12 133 | 12 134 | 12 135 | IN 136 | 137 | 138 | CUSTOMER_REFERENCE 139 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 140 | 141 | 142 |
143 |
144 |
145 |
146 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Condor_US_CA_ADG_IE 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-02-18T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_ECONOMY 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Sender_Name 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Collierville 42 | TN 43 | 38017 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | Edmonton 58 | AB 59 | T6E5Z4 60 | CA 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | 72 | 73 | 74 | ABHAY 75 | Syntel 76 | 9922298345 77 | pritpal_sahani@syntelinc.com 78 | 79 |
80 | String 81 | city 82 | TN 83 | 38017 84 | US 85 |
86 |
87 | 88 | SENDER 89 | 90 | 150067065 91 | US 92 | 93 | 94 | DOCUMENTS_ONLY 95 | 96 | USD 97 | 100.00 98 | 99 | 100 | FOB_OR_FCA 101 | 102 | 103 | 1 104 | ABCD 105 | US 106 | 107 | LB 108 | 1.0 109 | 110 | 1 111 | cm 112 | 113 | USD 114 | 1.000000 115 | 116 | 117 | USD 118 | 100.000000 119 | 120 | 121 | 122 | 30.37(f) 123 | 124 |
125 | 126 | COMMON2D 127 | PNG 128 | PAPER_7X4.75 129 | 130 | ACCOUNT 131 | 1 132 | INDIVIDUAL_PACKAGES 133 | 134 | 1 135 | 136 | LB 137 | 20.0 138 | 139 | 140 | 12 141 | 12 142 | 12 143 | IN 144 | 145 | 146 | CUSTOMER_REFERENCE 147 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 148 | 149 | 150 | DANGEROUS_GOODS 151 | 152 | ACCESSIBLE 153 | 154 | 155 | 156 |
157 |
158 |
159 |
160 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DE_HAL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_DE_HAL 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | PRIORITY_OVERNIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | HOLD_AT_LOCATION 74 | 75 | 9072764228 76 | 77 | 78 | Recipient Contact 79 | 1234567890 80 | 81 |
82 | 2210 E Northern Lights Blvd 83 | Anchorage 84 | AK 85 | 99508 86 | US 87 |
88 |
89 | FEDEX_OFFICE 90 | ANCK 91 | 5501 92 |
93 |
94 | 95 | COMMON2D 96 | PNG 97 | PAPER_4X6 98 | 99 | ACCOUNT 100 | 1 101 | INDIVIDUAL_PACKAGES 102 | 103 | 1 104 | 105 | LB 106 | 20.0 107 | 108 | 109 | 12 110 | 12 111 | 12 112 | IN 113 | 114 | 115 | 123445 116 | kjdjalsro1262739827 117 | 12 118 | ContentDescription 119 | 120 | 121 |
122 |
123 |
124 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_DE_HAL_Sig_Opt_A 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | PRIORITY_OVERNIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | HOLD_AT_LOCATION 74 | 75 | 9072764228 76 | 77 | 78 | Recipient Contact 79 | 1234567890 80 | 81 |
82 | 2210 E Northern Lights Blvd 83 | Anchorage 84 | AK 85 | 99508 86 | US 87 |
88 |
89 | FEDEX_OFFICE 90 | ANCK 91 | 5501 92 |
93 |
94 | 95 | COMMON2D 96 | PNG 97 | PAPER_4X6 98 | 99 | ACCOUNT 100 | 1 101 | INDIVIDUAL_PACKAGES 102 | 103 | 1 104 | 105 | LB 106 | 20.0 107 | 108 | 109 | 12 110 | 12 111 | 12 112 | IN 113 | 114 | 115 | SIGNATURE_OPTION 116 | 117 | ADULT 118 | 119 | 120 | 121 | 123445 122 | kjdjalsro1262739827 123 | 12 124 | ContentDescription 125 | 126 | 127 |
128 |
129 |
130 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DG_HAL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_DG_HAL 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FEDEX_GROUND 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | HOLD_AT_LOCATION 74 | 75 | 9072764228 76 | 77 | 78 | Recipient Contact 79 | 1234567890 80 | 81 |
82 | 2210 E Northern Lights Blvd 83 | Anchorage 84 | AK 85 | 99508 86 | US 87 |
88 |
89 | FEDEX_OFFICE 90 | ANCK 91 | 5501 92 |
93 |
94 | 95 | COMMON2D 96 | PNG 97 | PAPER_4X6 98 | 99 | ACCOUNT 100 | 1 101 | INDIVIDUAL_PACKAGES 102 | 103 | 1 104 | 105 | LB 106 | 20.0 107 | 108 | 109 | 12 110 | 12 111 | 12 112 | IN 113 | 114 | 115 | 123445 116 | kjdjalsro1262739827 117 | 12 118 | ContentDescription 119 | 120 | 121 |
122 |
123 |
124 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_DG_HAL_Sig_Opt_A 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FEDEX_GROUND 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | HOLD_AT_LOCATION 74 | 75 | 9072764228 76 | 77 | 78 | Recipient Contact 79 | 1234567890 80 | 81 |
82 | 2210 E Northern Lights Blvd 83 | Anchorage 84 | AK 85 | 99508 86 | US 87 |
88 |
89 | FEDEX_OFFICE 90 | ANCK 91 | 5501 92 |
93 |
94 | 95 | COMMON2D 96 | PNG 97 | PAPER_4X6 98 | 99 | ACCOUNT 100 | 1 101 | INDIVIDUAL_PACKAGES 102 | 103 | 1 104 | 105 | LB 106 | 20.0 107 | 108 | 109 | 12 110 | 12 111 | 12 112 | IN 113 | 114 | 115 | SIGNATURE_OPTION 116 | 117 | ADULT 118 | 119 | 120 | 121 | 123445 122 | kjdjalsro1262739827 123 | 12 124 | ContentDescription 125 | 126 | 127 |
128 |
129 |
130 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | ProcessShipmentRequest_F2_Sat_Pickup 19 | 20 | 21 | ship 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FEDEX_2_DAY_FREIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 151.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Detroit 45 | MI 46 | 48208 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Millbrae 60 | CA 61 | 94030 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | SATURDAY_PICKUP 74 | 75 | 76 | COMMON2D 77 | PNG 78 | PAPER_4X6 79 | 80 | ACCOUNT 81 | 1 82 | INDIVIDUAL_PACKAGES 83 | 84 | 1 85 | 86 | LB 87 | 151.0 88 | 89 | 90 | 30 91 | 30 92 | 40 93 | IN 94 | 95 | 96 | 123445 97 | kjdjalsro1262739827 98 | 12 99 | ContentDescription 100 | 101 | 102 |
103 |
104 |
105 |
106 | -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_CH_PO.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Intra_CH_PO 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T09:30:47-05:00 26 | REGULAR_PICKUP 27 | PRIORITY_OVERNIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | SFR 34 | 35 | 36 | PERSONAL_STATE 37 | 412998934062 38 | 39 | 40 | WAPI 41 | CSCA-WAPI 42 | 1234567890 43 | 44 |
45 | Address_Line1 46 | Address_Line2 47 | Basel-Stadt 48 | BS 49 | 4001 50 | CH 51 |
52 |
53 | 54 | 55 | BUSINESS_STATE 56 | 106206262 57 | 58 | 59 | WAPI 60 | SENDER 61 | 1234567890 62 | 63 |
64 | SN2000 Test Meter 8 65 | 10 FedEx Parkway 66 | Vaud 67 | VD 68 | 1029 69 | CH 70 |
71 |
72 | 73 | SENDER 74 | 75 | 76 | CH 77 | 78 | 79 | 80 | FUTURE_DAY_SHIPMENT 81 | 82 | 83 | 84 | INDIVIDUAL 85 | 123456789 86 | 87 | 88 | SENDER 89 | 90 | 91 | CH 92 | 93 | 94 | DOCUMENTS_ONLY 95 | 96 | SFR 97 | 2500.000000 98 | 99 | 100 | SFR 101 | 15.00 102 | 103 | 104 | 1 105 | ABCD 106 | US 107 | 84212100 108 | 109 | LB 110 | 100.0 111 | 112 | 250 113 | LITERS 114 | 115 | SFR 116 | 1.000000 117 | 118 | 119 | SFR 120 | 2500.000000 121 | 122 | 123 | 124 | 125 | COMMON2D 126 | PNG 127 | PAPER_7X4.75 128 | 129 | ACCOUNT 130 | 1 131 | INDIVIDUAL_PACKAGES 132 | 133 | 1 134 | 135 | SFR 136 | 100.00 137 | 138 | 139 | LB 140 | 50.0 141 | 142 | 143 | 5 144 | 5 145 | 5 146 | IN 147 | 148 | fjldfjsdl 149 | 150 | INTRACOUNTRY_REGULATORY_REFERENCE 151 | INTRA_CH_PRIORITY_OVERNIGHT 152 | 153 | 154 |
155 |
156 |
157 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Intra_MX_Exp_Saver 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T09:30:47-05:00 26 | REGULAR_PICKUP 27 | FEDEX_EXPRESS_SAVER 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | NMP 34 | 35 | 36 | PERSONAL_STATE 37 | 412998934014 38 | 39 | 40 | WAPI 41 | CSCA-WAPI 42 | 1234567890 43 | 44 |
45 | Test Address Line1 - Sender 46 | Test Address Line2 - Sender 47 | NAUCALPAN 48 | NL 49 | 64006 50 | MX 51 |
52 |
53 | 54 | 55 | BUSINESS_STATE 56 | 101401414 57 | 58 | 59 | WAPI 60 | SENDER 61 | 1234567890 62 | 63 |
64 | WAPI SENDER Avenue 65 | WAPI SENDER Avenue2 66 | MONTERREY 67 | NL 68 | 64006 69 | MX 70 |
71 |
72 | 73 | SENDER 74 | 75 | 76 | MX 77 | 78 | 79 | 80 | FUTURE_DAY_SHIPMENT 81 | 82 | 83 | 84 | INDIVIDUAL 85 | 123456789 86 | 87 | 88 | SENDER 89 | 90 | 91 | MX 92 | 93 | 94 | DOCUMENTS_ONLY 95 | 96 | NMP 97 | 2500.000000 98 | 99 | 100 | NMP 101 | 15.00 102 | 103 | 104 | 1 105 | ABCD 106 | MX 107 | 84212100 108 | 109 | LB 110 | 100.0 111 | 112 | 250 113 | LITERS 114 | 115 | NMP 116 | 1.000000 117 | 118 | 119 | NMP 120 | 2500.000000 121 | 122 | 123 | 124 | 125 | COMMON2D 126 | PNG 127 | PAPER_7X4.75 128 | 129 | ACCOUNT 130 | 1 131 | INDIVIDUAL_PACKAGES 132 | 133 | 1 134 | 135 | NMP 136 | 100.00 137 | 138 | 139 | LB 140 | 50.0 141 | 142 | 143 | 5 144 | 5 145 | 5 146 | IN 147 | 148 | fjldfjsdl 149 | 150 | INTRACOUNTRY_REGULATORY_REFERENCE 151 | INTRA_MX_FEDEX_EXPRESS_SAVER 152 | 153 | 154 |
155 |
156 |
157 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Intra_UAE_SO 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T05:00:47-05:00 26 | REGULAR_PICKUP 27 | STANDARD_OVERNIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | 34 | 35 | 36 | FedEx-Servers 37 | 1234567890 38 | 39 |
40 | No.6, Pradikaran 41 | 10 Nigdi, Pune 42 | Fujairah City 43 | FU 44 | 60000 45 | AE 46 |
47 |
48 | 49 | 50 | 51 | Recipient Yuvaraj 52 | 1234567890 53 | 54 |
55 | Recipient Address Line 1 56 | Recipient Address Line 2 57 | Ajman 58 | AJ 59 | 40000 60 | AE 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | AE 68 | 69 | 70 | 71 | FUTURE_DAY_SHIPMENT 72 | 73 | 74 | COMMON2D 75 | PNG 76 | PAPER_4X6 77 | 78 | ACCOUNT 79 | 1 80 | INDIVIDUAL_PACKAGES 81 | 82 | 1 83 | 84 | DHS 85 | 100.00 86 | 87 | 88 | LB 89 | 10.0 90 | 91 | 92 | 108 93 | 5 94 | 5 95 | IN 96 | 97 | String 98 | 99 | INTRACOUNTRY_REGULATORY_REFERENCE 100 | INTRA_AE_FEDEX_1_DAY_FREIGHTR 101 | 102 | 103 |
104 |
105 |
106 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Prio_Alrt_Frgt 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-02-23T09:30:47-05:00 26 | REGULAR_PICKUP 27 | FEDEX_3_DAY_FREIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 150.0 32 | 33 | 34 | 35 | 36 | FedEx-WAPI 37 | 1234567890 38 | 39 |
40 | SN2000 Test Meter 8 41 | 10 Fedex Parkway 42 | Detroit 43 | MI 44 | 48208 45 | US 46 |
47 |
48 | 49 | 50 | 51 | Recipient Contact 52 | 1234567890 53 | 54 |
55 | Recipient Address Line 1 56 | Recipient Address Line 2 57 | Detroit 58 | MI 59 | 48208 60 | US 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | COMMON2D 72 | PNG 73 | PAPER_4X6 74 | 75 | ACCOUNT 76 | 1 77 | INDIVIDUAL_PACKAGES 78 | 79 | 1 80 | 81 | USD 82 | 100.00 83 | 84 | 85 | LB 86 | 170.0 87 | 88 | 89 | 12 90 | 12 91 | 12 92 | IN 93 | 94 | 95 | PRIORITY_ALERT 96 | 97 | 98 |
99 |
100 |
101 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Smash_Basic.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Smash_Basic 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T03:30:47-05:00 26 | REGULAR_PICKUP 27 | SMART_POST 28 | YOUR_PACKAGING 29 | 30 | 31 | 32 | FedEx-WAPI 33 | 1234567890 34 | 35 |
36 | SN2000 Test Meter 8 37 | 10 Fedex Parkway 38 | Austin 39 | TX 40 | 73301 41 | US 42 |
43 |
44 | 45 | 46 | 47 | Recipient Contact 48 | 1234567890 49 | 50 |
51 | Recipient Address Line 1 52 | Recipient Address Line 2 53 | Collerville 54 | TN 55 | 38017 56 | US 57 |
58 |
59 | 60 | SENDER 61 | 62 | 63 | USD 64 | 65 | 66 | 67 | PRESORTED_STANDARD 68 | ADDRESS_CORRECTION 69 | 5087 70 | 71 | 72 | COMMON2D 73 | PNG 74 | PAPER_4X6 75 | 76 | ACCOUNT 77 | 1 78 | INDIVIDUAL_PACKAGES 79 | 80 | 1 81 | 82 | USD 83 | 0.00 84 | 85 | 86 | LB 87 | 0.99 88 | 89 | 90 | CUSTOMER_REFERENCE 91 | Stark Bros 92 | 93 | 94 |
95 |
96 |
97 |
-------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Smash_Prnt_Ret.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ProcessShipmentRequest_Smash_Prnt_Ret 17 | 18 | 19 | ship 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T03:30:47-05:00 26 | REGULAR_PICKUP 27 | SMART_POST 28 | YOUR_PACKAGING 29 | 30 | 31 | 32 | FedEx-WAPI 33 | 1234567890 34 | 35 |
36 | SN2000 Test Meter 8 37 | 10 Fedex Parkway 38 | Collerville 39 | AS 40 | 96799 41 | US 42 |
43 |
44 | 45 | 46 | 47 | Recipient Contact 48 | 1234567890 49 | 50 |
51 | Recipient Address Line 1 52 | Recipient Address Line 2 53 | Collerville 54 | TN 55 | 38017 56 | US 57 |
58 |
59 | 60 | SENDER 61 | 62 | 63 | USD 64 | 65 | 66 | 67 | RETURN_SHIPMENT 68 | 69 | PRINT_RETURN_LABEL 70 | 71 | 72 | 73 | PARCEL_RETURN 74 | ADDRESS_CORRECTION 75 | 5531 76 | 77 | 78 | COMMON2D 79 | PNG 80 | PAPER_4X6 81 | 82 | ACCOUNT 83 | 1 84 | INDIVIDUAL_PACKAGES 85 | 86 | 1 87 | 88 | USD 89 | 0.00 90 | 91 | 92 | LB 93 | 0.99 94 | 95 | 96 | CUSTOMER_REFERENCE 97 | Stark Bros 98 | 99 | 100 |
101 |
102 |
103 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateReply_DG_HAL.txt: -------------------------------------------------------------------------------- 1 | 2 | WARNINGWARNINGcrs838Origin Postal-City Mismatch. Origin Postal-City Mismatch. RateRequest_DG_HALcrs900FEDEX_GROUNDYOUR_PACKAGINGANCfalseA2AMSERVICE_DEFAULTPAYOR_ACCOUNT_PACKAGEPAYOR_ACCOUNT_PACKAGE17ACTUAL05.25LB101.0USD212.78USD0.0USD212.78USD18.67USD231.45USD0.0USD231.45USD0.0ADDITIONAL_HANDLINGPACKAGEAdditional handling surcharge - weightUSD7.5FUELPACKAGEFedEx Ground FuelUSD11.170PAYOR_ACCOUNT_PACKAGEACTUALLB101.0USD212.78USD0.0USD212.78USD18.67USD231.45USD0.0USD231.45USD0.0ADDITIONAL_HANDLINGPACKAGEAdditional handling surcharge - weightUSD7.5FUELPACKAGEFedEx Ground FuelUSD11.17 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- 1 | 2 | WARNINGWARNINGcrs838Origin Postal-City Mismatch. Origin Postal-City Mismatch. RateRequest_DG_HAL_Sig_Opt_Acrs900FEDEX_GROUNDYOUR_PACKAGINGANCfalseA2AMADULTPAYOR_ACCOUNT_PACKAGEPAYOR_ACCOUNT_PACKAGE17ACTUAL05.25LB101.0USD212.78USD0.0USD212.78USD22.67USD235.45USD0.0USD235.45USD0.0SIGNATURE_OPTIONPACKAGEAdult signature requiredUSD4.0ADDITIONAL_HANDLINGPACKAGEAdditional handling surcharge - weightUSD7.5FUELPACKAGEFedEx Ground FuelUSD11.170PAYOR_ACCOUNT_PACKAGEACTUALLB101.0USD212.78USD0.0USD212.78USD22.67USD235.45USD0.0USD235.45USD0.0SIGNATURE_OPTIONPACKAGEAdult signature requiredUSD4.0ADDITIONAL_HANDLINGPACKAGEAdditional handling surcharge - weightUSD7.5FUELPACKAGEFedEx Ground FuelUSD11.17 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- 1 | 2 | FAILUREFAILUREcrs200Rating is temporarily unavailable, please try again later. Rating is temporarily unavailable, please try again later. RateRequest_Condor_EMEA_ADG_IEFcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs547Invalid special service(s). Invalid special service(s). RateRequest_F2_Sat_Pickupcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_CH_PO.txt: -------------------------------------------------------------------------------- 1 | 2 | SUCCESSSUCCESScrs0Request was successfully processed. Request was successfully processed. RateRequest_Intra_CH_POcrs900PRIORITY_OVERNIGHTYOUR_PACKAGINGBSLfalseA2PMSERVICE_DEFAULTPAYOR_ACCOUNT_SHIPMENTPAYOR_ACCOUNT_SHIPMENT0000000R0001ACTUALACTUALSFRSFR1.0166CUSTOMER3.5LB50.0SFR64.8SFR0.0SFR64.8SFR2.3SFR67.1SFR5.1SFR72.2SFR0.0FUELFuelSFR2.3INTRACOUNTRYSwitzerland VATSFR5.1RATED_ACCOUNT_SHIPMENT0000000R0001ACTUALACTUALSFRSFR1.0166CUSTOMER3.5LB50.0SFR64.8SFR0.0SFR64.8SFR2.3SFR67.1SFR5.1SFR72.2SFR0.0FUELFuelSFR2.3INTRACOUNTRYSwitzerland VATSFR5.1 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- 1 | 2 | SUCCESSSUCCESScrs0Request was successfully processed. Request was successfully processed. RateRequest_Intra_MX_Exp_Savercrs900FEDEX_EXPRESS_SAVERYOUR_PACKAGINGMTYfalseA1A1SERVICE_DEFAULTPAYOR_ACCOUNT_SHIPMENTPAYOR_ACCOUNT_SHIPMENT0000000R0001BASEACTUALNMPUSD0.0805.0LB50.0USD36.16USD0.0USD36.16USD3.88USD40.04USD6.41USD46.45USD0.0FUELFuelUSD1.81INSURED_VALUEInsured valueUSD2.07VATMexico freight value-addedUSD6.41RATED_ACCOUNT_SHIPMENT0000000R0001BASEACTUALNMPNMP1.005.0LB50.0NMP454.18NMP0.0NMP454.18NMP48.7NMP502.88NMP80.51NMP583.39NMP0.0FUELFuelNMP22.71INSURED_VALUEInsured valueNMP25.99VATMexico freight value-addedNMP80.51 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs803Meter number is missing or invalid. Meter number is missing or invalid. RateRequest_Intra_UAE_SOcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs868Service is not allowed. Service is not allowed. RateRequest_Prio_Alrt_Frgtcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Sat_Del.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs775Special Service Saturday Delivery is not allowed. Special Service Saturday Delivery is not allowed. SPECIAL_SERVICE_TYPE Saturday DeliveryWARNINGcrs838Origin Postal-City Mismatch. Origin Postal-City Mismatch. RateRequest_Condor_Sat_Delcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs775Special Service Saturday Pickup is not allowed. Special Service Saturday Pickup is not allowed. SPECIAL_SERVICE_TYPE Saturday PickupRateRequest_Condor_Sat_Pickup_IPFcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_SmartPost_Basic.txt: -------------------------------------------------------------------------------- 1 | 2 | SUCCESSSUCCESScrs0Request was successfully processed. Request was successfully processed. RateRequest_Smash_Basiccrs900SMART_POSTYOUR_PACKAGINGfalseSERVICE_DEFAULTPAYOR_ACCOUNT_PACKAGEPAYOR_ACCOUNT_PACKAGE6ACTUAL05.25LB1.0USD3.03USD0.15USD2.88USD0.15USD3.03USD0.0USD3.03USD0.0EARNEDEarnedUSD0.155.0FUELPACKAGESmartPost FuelUSD0.150PAYOR_ACCOUNT_PACKAGEACTUALLB1.0USD3.03USD0.15USD2.88USD0.15USD3.03USD0.0USD3.03USD0.0EARNEDEarnedUSD0.155.0FUELPACKAGESmartPost FuelUSD0.15 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_SmartPost_Prnt_Ret.txt: -------------------------------------------------------------------------------- 1 | 2 | ERRORERRORcrs997SmartPost indicia type is invalid or missing.SmartPost indicia type is invalid or missing.RateRequest_Smash_Prnt_Retcrs900 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- 1 | 2 | SUCCESSSUCCESScrs0Request was successfully processed. Request was successfully processed. RateRequest_Condor_US_CA_ADG_IEcrs900INTERNATIONAL_ECONOMYYOUR_PACKAGINGYEGfalseA2A3SERVICE_DEFAULTPAYOR_ACCOUNT_SHIPMENTPAYOR_ACCOUNT_SHIPMENT0000000US001OACTUALACTUALUSDUSD1.0166COUNTRY16.5LB20.0USD127.32USD0.0USD127.32USD131.01USD258.33USD0.0USD258.33USD0.0DANGEROUS_GOODSAccessible dangerous goodsUSD110.0FUELFuelUSD21.01RATED_ACCOUNT_SHIPMENT0000000US001OACTUALACTUALUSDUSD1.0166COUNTRY16.5LB20.0USD127.32USD0.0USD127.32USD131.01USD258.33USD0.0USD258.33USD0.0DANGEROUS_GOODSAccessible dangerous goodsUSD110.0FUELFuelUSD21.01 3 | -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DE_HAL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_DE_HAL 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | PRIORITY_OVERNIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | WAPI 34 | CSCA-WAPI 35 | 1234567890 36 | 37 |
38 | Test Address Line1 - Sender 39 | Test Address Line2 - Sender 40 | MEMPHIS 41 | TN 42 | 38017 43 | US 44 |
45 |
46 | 47 | 48 | WAPI 49 | SENDER 50 | 1234567890 51 | 52 |
53 | WAPI SENDER Avenue 54 | WAPI SENDER Avenue2 55 | RICHMOND 56 | BC 57 | V7C4V4 58 | CA 59 |
60 |
61 | 62 | SENDER 63 | 64 | 65 | US 66 | 67 | 68 | 69 | HOLD_AT_LOCATION 70 | 71 | 9072764228 72 | 73 | 74 | Recipient Contact 75 | 1234567890 76 | 77 |
78 | 2210 E Northern Lights Blvd 79 | Anchorage 80 | AK 81 | 99508 82 | US 83 |
84 |
85 | FEDEX_OFFICE 86 | ANCK 87 | 5501 88 |
89 |
90 | ACCOUNT 91 | 1 92 | INDIVIDUAL_PACKAGES 93 | 94 | 1 95 | 96 | LB 97 | 101.0 98 | 99 | 100 | CUSTOMER_REFERENCE 101 | Ref Information 102 | 103 | 104 |
105 |
106 |
107 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_DE_HAL_Sig_Opt_A 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | PRIORITY_OVERNIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | WAPI 34 | CSCA-WAPI 35 | 1234567890 36 | 37 |
38 | Test Address Line1 - Sender 39 | Test Address Line2 - Sender 40 | MEMPHIS 41 | TN 42 | 38017 43 | US 44 |
45 |
46 | 47 | 48 | WAPI 49 | SENDER 50 | 1234567890 51 | 52 |
53 | WAPI SENDER Avenue 54 | WAPI SENDER Avenue2 55 | RICHMOND 56 | TX 57 | 73301 58 | US 59 |
60 |
61 | 62 | SENDER 63 | 64 | 65 | US 66 | 67 | 68 | 69 | HOLD_AT_LOCATION 70 | 71 | 9072764228 72 | 73 | 74 | Recipient Contact 75 | 1234567890 76 | 77 |
78 | 2210 E Northern Lights Blvd 79 | Anchorage 80 | AK 81 | 99508 82 | US 83 |
84 |
85 | FEDEX_OFFICE 86 | ANCK 87 | 5501 88 |
89 |
90 | ACCOUNT 91 | 1 92 | INDIVIDUAL_PACKAGES 93 | 94 | 1 95 | 96 | LB 97 | 101.0 98 | 99 | 100 | CUSTOMER_REFERENCE 101 | Ref Information 102 | 103 | 104 | SIGNATURE_OPTION 105 | 106 | ADULT 107 | 108 | 109 | 110 |
111 |
112 |
113 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DG_HAL.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_DG_HAL 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | FEDEX_GROUND 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | WAPI 34 | CSCA-WAPI 35 | 1234567890 36 | 37 |
38 | Test Address Line1 - Sender 39 | Test Address Line2 - Sender 40 | MEMPHIS 41 | TN 42 | 38017 43 | US 44 |
45 |
46 | 47 | 48 | WAPI 49 | SENDER 50 | 1234567890 51 | 52 |
53 | WAPI SENDER Avenue 54 | WAPI SENDER Avenue2 55 | RICHMOND 56 | BC 57 | V7C4V4 58 | CA 59 |
60 |
61 | 62 | SENDER 63 | 64 | 65 | US 66 | 67 | 68 | 69 | HOLD_AT_LOCATION 70 | 71 | 9072764228 72 | 73 | 74 | Recipient Contact 75 | 1234567890 76 | 77 |
78 | 2210 E Northern Lights Blvd 79 | Anchorage 80 | AK 81 | 99508 82 | US 83 |
84 |
85 | FEDEX_OFFICE 86 | ANCK 87 | 5501 88 |
89 |
90 | ACCOUNT 91 | 1 92 | INDIVIDUAL_PACKAGES 93 | 94 | 1 95 | 96 | LB 97 | 101.0 98 | 99 | 100 | CUSTOMER_REFERENCE 101 | Ref Information 102 | 103 | 104 |
105 |
106 |
107 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_DG_HAL_Sig_Opt_A 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2009-10-19T12:34:56-06:00 27 | REGULAR_PICKUP 28 | FEDEX_GROUND 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | WAPI 34 | CSCA-WAPI 35 | 1234567890 36 | 37 |
38 | Test Address Line1 - Sender 39 | Test Address Line2 - Sender 40 | MEMPHIS 41 | TN 42 | 38017 43 | US 44 |
45 |
46 | 47 | 48 | WAPI 49 | SENDER 50 | 1234567890 51 | 52 |
53 | WAPI SENDER Avenue 54 | WAPI SENDER Avenue2 55 | RICHMOND 56 | TX 57 | 73301 58 | US 59 |
60 |
61 | 62 | SENDER 63 | 64 | 65 | US 66 | 67 | 68 | 69 | HOLD_AT_LOCATION 70 | 71 | 9072764228 72 | 73 | 74 | Recipient Contact 75 | 1234567890 76 | 77 |
78 | 2210 E Northern Lights Blvd 79 | Anchorage 80 | AK 81 | 99508 82 | US 83 |
84 |
85 | FEDEX_OFFICE 86 | ANCK 87 | 5501 88 |
89 |
90 | ACCOUNT 91 | 1 92 | INDIVIDUAL_PACKAGES 93 | 94 | 1 95 | 96 | LB 97 | 101.0 98 | 99 | 100 | CUSTOMER_REFERENCE 101 | Ref Information 102 | 103 | 104 | SIGNATURE_OPTION 105 | 106 | ADULT 107 | 108 | 109 | 110 |
111 |
112 |
113 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Condor_EMEA_ADG_IEF 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_ECONOMY_FREIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Abhay 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Houston 42 | TX 43 | 77216 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | London 58 | GB 59 | EC1 60 | GB 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | 1 72 | 2 73 | 123asd789 74 | 75 | 76 | 77 | SENDER 78 | 79 | 150067065 80 | US 81 | 82 | 83 | DOCUMENTS_ONLY 84 | 85 | USD 86 | 100.00 87 | 88 | 89 | FOB_OR_FCA 90 | 91 | 92 | 1 93 | ABCD 94 | US 95 | 96 | LB 97 | 1.0 98 | 99 | 1 100 | cm 101 | 102 | USD 103 | 1.000000 104 | 105 | 106 | USD 107 | 100.000000 108 | 109 | 110 | 111 | 30.37(f) 112 | 113 | 114 | 115 | COMMON2D 116 | PNG 117 | PAPER_7X4.75 118 | 119 | ACCOUNT 120 | 1 121 | INDIVIDUAL_PACKAGES 122 | 123 | 1 124 | 125 | LB 126 | 180.0 127 | 128 | 129 | 12 130 | 12 131 | 12 132 | IN 133 | 134 | 135 | CUSTOMER_REFERENCE 136 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 137 | 138 | 139 | DANGEROUS_GOODS 140 | 141 | ACCESSIBLE 142 | 143 | 144 | 145 |
146 |
147 |
148 |
149 | -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | RateRequest_F2_Sat_Pickup 19 | 20 | 21 | crs 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FEDEX_2_DAY_FREIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 151.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Detroit 45 | MI 46 | 48208 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Millbrae 60 | CA 61 | 94030 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | SATURDAY_PICKUP 74 | 75 | 76 | COMMON2D 77 | PNG 78 | PAPER_4X6 79 | 80 | ACCOUNT 81 | 1 82 | INDIVIDUAL_PACKAGES 83 | 84 | 1 85 | 86 | LB 87 | 151.0 88 | 89 | 90 | 30 91 | 30 92 | 40 93 | IN 94 | 95 | 96 | 123445 97 | kjdjalsro1262739827 98 | 12 99 | ContentDescription 100 | 101 | 102 |
103 |
104 |
105 |
106 | -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_CH_PO.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Intra_CH_PO 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T09:30:47-05:00 26 | REGULAR_PICKUP 27 | PRIORITY_OVERNIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | SFR 34 | 35 | 36 | PERSONAL_STATE 37 | 412998934062 38 | 39 | 40 | WAPI 41 | CSCA-WAPI 42 | 1234567890 43 | 44 |
45 | Address_Line1 46 | Address_Line2 47 | Basel-Stadt 48 | BS 49 | 4001 50 | CH 51 |
52 |
53 | 54 | 55 | BUSINESS_STATE 56 | 106206262 57 | 58 | 59 | WAPI 60 | SENDER 61 | 1234567890 62 | 63 |
64 | SN2000 Test Meter 8 65 | 10 FedEx Parkway 66 | Vaud 67 | VD 68 | 1029 69 | CH 70 |
71 |
72 | 73 | SENDER 74 | 75 | 76 | CH 77 | 78 | 79 | 80 | 81 | INDIVIDUAL 82 | 123456789 83 | 84 | 85 | SENDER 86 | 87 | 88 | CH 89 | 90 | 91 | DOCUMENTS_ONLY 92 | 93 | SFR 94 | 2500.000000 95 | 96 | 97 | SFR 98 | 15.00 99 | 100 | 101 | 1 102 | ABCD 103 | US 104 | 84212100 105 | 106 | LB 107 | 100.0 108 | 109 | 250 110 | LITERS 111 | 112 | SFR 113 | 1.000000 114 | 115 | 116 | SFR 117 | 2500.000000 118 | 119 | 120 | 121 | 122 | COMMON2D 123 | PNG 124 | PAPER_7X4.75 125 | 126 | ACCOUNT 127 | 1 128 | INDIVIDUAL_PACKAGES 129 | 130 | 1 131 | 132 | SFR 133 | 100.00 134 | 135 | 136 | LB 137 | 50.0 138 | 139 | 140 | 5 141 | 5 142 | 5 143 | IN 144 | 145 | fjldfjsdl 146 | 147 | INTRACOUNTRY_REGULATORY_REFERENCE 148 | INTRA_CH_PRIORITY_OVERNIGHT 149 | 150 | 151 |
152 |
153 |
154 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Intra_MX_Exp_Saver 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T09:30:47-05:00 26 | REGULAR_PICKUP 27 | FEDEX_EXPRESS_SAVER 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | NMP 34 | 35 | 36 | PERSONAL_STATE 37 | 412998934014 38 | 39 | 40 | WAPI 41 | CSCA-WAPI 42 | 1234567890 43 | 44 |
45 | Test Address Line1 - Sender 46 | Test Address Line2 - Sender 47 | NAUCALPAN 48 | NL 49 | 64006 50 | MX 51 |
52 |
53 | 54 | 55 | BUSINESS_STATE 56 | 101401414 57 | 58 | 59 | WAPI 60 | SENDER 61 | 1234567890 62 | 63 |
64 | WAPI SENDER Avenue 65 | WAPI SENDER Avenue2 66 | MONTERREY 67 | NL 68 | 64006 69 | MX 70 |
71 |
72 | 73 | SENDER 74 | 75 | 76 | MX 77 | 78 | 79 | 80 | 81 | INDIVIDUAL 82 | 123456789 83 | 84 | 85 | SENDER 86 | 87 | 88 | MX 89 | 90 | 91 | DOCUMENTS_ONLY 92 | 93 | NMP 94 | 2500.000000 95 | 96 | 97 | NMP 98 | 15.00 99 | 100 | 101 | 1 102 | ABCD 103 | MX 104 | 84212100 105 | 106 | LB 107 | 100.0 108 | 109 | 250 110 | LITERS 111 | 112 | NMP 113 | 1.000000 114 | 115 | 116 | NMP 117 | 2500.000000 118 | 119 | 120 | 121 | 122 | COMMON2D 123 | PNG 124 | PAPER_7X4.75 125 | 126 | ACCOUNT 127 | 1 128 | INDIVIDUAL_PACKAGES 129 | 130 | 1 131 | 132 | NMP 133 | 100.00 134 | 135 | 136 | LB 137 | 50.0 138 | 139 | 140 | 5 141 | 5 142 | 5 143 | IN 144 | 145 | fjldfjsdl 146 | 147 | INTRACOUNTRY_REGULATORY_REFERENCE 148 | INTRA_MX_FEDEX_EXPRESS_SAVER 149 | 150 | 151 |
152 |
153 |
154 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Intra_UAE_SO 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T05:00:47-05:00 26 | REGULAR_PICKUP 27 | STANDARD_OVERNIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 50.0 32 | 33 | 34 | 35 | 36 | FedEx-Servers 37 | 1234567890 38 | 39 |
40 | No.6, Pradikaran 41 | 10 Nigdi, Pune 42 | Fujairah City 43 | FU 44 | 60000 45 | AE 46 |
47 |
48 | 49 | 50 | 51 | Recipient Yuvaraj 52 | 1234567890 53 | 54 |
55 | Recipient Address Line 1 56 | Recipient Address Line 2 57 | Ajman 58 | AJ 59 | 40000 60 | AE 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | AE 68 | 69 | 70 | 71 | COMMON2D 72 | PNG 73 | PAPER_4X6 74 | 75 | ACCOUNT 76 | 1 77 | INDIVIDUAL_PACKAGES 78 | 79 | 1 80 | 81 | DHS 82 | 100.00 83 | 84 | 85 | LB 86 | 10.0 87 | 88 | 89 | 108 90 | 5 91 | 5 92 | IN 93 | 94 | String 95 | 96 | INTRACOUNTRY_REGULATORY_REFERENCE 97 | INTRA_AE_FEDEX_1_DAY_FREIGHTR 98 | 99 | 100 |
101 |
102 |
103 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Prio_Alrt_Frgt 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T09:30:47-05:00 26 | REGULAR_PICKUP 27 | FEDEX_3_DAY_FREIGHT 28 | YOUR_PACKAGING 29 | 30 | LB 31 | 150.0 32 | 33 | 34 | 35 | 36 | FedEx-WAPI 37 | 1234567890 38 | 39 |
40 | SN2000 Test Meter 8 41 | 10 Fedex Parkway 42 | Detroit 43 | MI 44 | 48208 45 | US 46 |
47 |
48 | 49 | 50 | 51 | Recipient Contact 52 | 1234567890 53 | 54 |
55 | Recipient Address Line 1 56 | Recipient Address Line 2 57 | Detroit 58 | MI 59 | 48208 60 | US 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | COMMON2D 72 | PNG 73 | PAPER_4X6 74 | 75 | ACCOUNT 76 | 1 77 | INDIVIDUAL_PACKAGES 78 | 79 | 1 80 | 81 | USD 82 | 100.00 83 | 84 | 85 | LB 86 | 170.0 87 | 88 | 89 | 12 90 | 12 91 | 12 92 | IN 93 | 94 | 95 | PRIORITY_ALERT 96 | 97 | 98 |
99 |
100 |
101 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Sat_Del.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | WBUS 15 | 0200 16 | 17 | 18 | RateRequest_Condor_Sat_Del 19 | 20 | 21 | crs 22 | 9 23 | 0 24 | 0 25 | 26 | 27 | 2010-08-16T09:30:47-05:00 28 | REGULAR_PICKUP 29 | FIRST_OVERNIGHT 30 | YOUR_PACKAGING 31 | 32 | LB 33 | 50.0 34 | 35 | 36 | 37 | 38 | FedEx-WAPI 39 | 1234567890 40 | 41 |
42 | SN2000 Test Meter 8 43 | 10 Fedex Parkway 44 | Texas 45 | TX 46 | 73301 47 | US 48 |
49 |
50 | 51 | 52 | 53 | Recipient Contact 54 | 1234567890 55 | 56 |
57 | Recipient Address Line 1 58 | Recipient Address Line 2 59 | Minneapolis 60 | MN 61 | 55411 62 | US 63 |
64 |
65 | 66 | SENDER 67 | 68 | 69 | USD 70 | 71 | 72 | 73 | SATURDAY_DELIVERY 74 | 75 | 76 | COMMON2D 77 | PNG 78 | PAPER_4X6 79 | 80 | ACCOUNT 81 | 1 82 | INDIVIDUAL_PACKAGES 83 | 84 | 1 85 | 86 | LB 87 | 20.0 88 | 89 | 90 | 12 91 | 12 92 | 12 93 | IN 94 | 95 | 96 | 123445 97 | kjdjalsro1262739827 98 | 12 99 | ContentDescription 100 | 101 | 102 |
103 |
104 |
105 |
106 | -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Condor_Sat_Pickup_IPF 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_PRIORITY_FREIGHT 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Sender_Name 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Detroit 42 | MI 43 | 48208 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | Edmonton 58 | AB 59 | T5A1 60 | CA 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | SATURDAY_PICKUP 72 | 73 | 74 | 1 75 | 2 76 | 123asd789 77 | 78 | 79 | 80 | SENDER 81 | 82 | 150067065 83 | US 84 | 85 | 86 | DOCUMENTS_ONLY 87 | 88 | USD 89 | 100.00 90 | 91 | 92 | FOB_OR_FCA 93 | 94 | 95 | 1 96 | ABCD 97 | US 98 | 99 | LB 100 | 1.0 101 | 102 | 1 103 | cm 104 | 105 | USD 106 | 1.000000 107 | 108 | 109 | USD 110 | 100.000000 111 | 112 | 113 | 114 | 30.37(f) 115 | 116 | 117 | 118 | COMMON2D 119 | PNG 120 | PAPER_7X4.75 121 | 122 | ACCOUNT 123 | 1 124 | INDIVIDUAL_PACKAGES 125 | 126 | 1 127 | 128 | LB 129 | 180.0 130 | 131 | 132 | 12 133 | 12 134 | 12 135 | IN 136 | 137 | 138 | CUSTOMER_REFERENCE 139 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 140 | 141 | 142 |
143 |
144 |
145 |
146 | -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_SmartPost_Basic.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Smash_Basic 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T03:30:47-05:00 26 | REGULAR_PICKUP 27 | SMART_POST 28 | YOUR_PACKAGING 29 | 30 | 31 | 32 | FedEx-WAPI 33 | 1234567890 34 | 35 |
36 | SN2000 Test Meter 8 37 | 10 Fedex Parkway 38 | Austin 39 | TX 40 | 73301 41 | US 42 |
43 |
44 | 45 | 46 | 47 | Recipient Contact 48 | 1234567890 49 | 50 |
51 | Recipient Address Line 1 52 | Recipient Address Line 2 53 | Memphis 54 | TN 55 | 38017 56 | US 57 |
58 |
59 | 60 | SENDER 61 | 62 | 63 | USD 64 | 65 | 66 | 67 | MEDIA_MAIL 68 | ADDRESS_CORRECTION 69 | 5254 70 | 71 | 72 | COMMON2D 73 | PNG 74 | PAPER_4X6 75 | 76 | ACCOUNT 77 | 1 78 | INDIVIDUAL_PACKAGES 79 | 80 | 1 81 | 82 | USD 83 | 0.00 84 | 85 | 86 | LB 87 | 0.99 88 | 89 | 90 | CUSTOMER_REFERENCE 91 | Stark Bros 92 | 93 | 94 |
95 |
96 |
97 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_SmartPost_Prnt_Ret.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Smash_Prnt_Ret 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | 25 | 2010-08-16T03:30:47-05:00 26 | REGULAR_PICKUP 27 | SMART_POST 28 | YOUR_PACKAGING 29 | 30 | 31 | 32 | FedEx-WAPI 33 | 1234567890 34 | 35 |
36 | SN2000 Test Meter 8 37 | 10 Fedex Parkway 38 | Austin 39 | TX 40 | 73301 41 | US 42 |
43 |
44 | 45 | 46 | 47 | Recipient Contact 48 | 1234567890 49 | 50 |
51 | Recipient Address Line 1 52 | Recipient Address Line 2 53 | Memphis 54 | TN 55 | 38017 56 | US 57 |
58 |
59 | 60 | SENDER 61 | 62 | 63 | USD 64 | 65 | 66 | 67 | RETURN_SHIPMENT 68 | 69 | PRINT_RETURN_LABEL 70 | 71 | 72 | 73 | PARCEL_RETURN 74 | ADDRESS_CORRECTION 75 | 5531 76 | 77 | 78 | COMMON2D 79 | PNG 80 | PAPER_4X6 81 | 82 | ACCOUNT 83 | 1 84 | INDIVIDUAL_PACKAGES 85 | 86 | 1 87 | 88 | USD 89 | 0.00 90 | 91 | 92 | LB 93 | 0.99 94 | 95 | 96 | CUSTOMER_REFERENCE 97 | Stark Bros 98 | 99 | 100 |
101 |
102 |
103 |
-------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | RateRequest_Condor_US_CA_ADG_IE 17 | 18 | 19 | crs 20 | 9 21 | 0 22 | 0 23 | 24 | esb 25 | 26 | 2010-08-16T12:34:56-06:00 27 | REGULAR_PICKUP 28 | INTERNATIONAL_ECONOMY 29 | YOUR_PACKAGING 30 | USD 31 | 32 | 33 | Sender_Name 34 | WAPISENDER-WBUS1100 35 | 9012704839 36 | sender@yahoo.com 37 | 38 |
39 | Sender_Address_Line1 40 | Sender_Address_Line2 41 | Collierville 42 | TN 43 | 38017 44 | US 45 |
46 |
47 | 48 | 49 | Recipient_Name 50 | CSCSWAPI-WBUS1100 51 | 9018549236 52 | recipient@yahoo.com 53 | 54 |
55 | Recipient_Address_Line1 56 | Recipient_Address_Line2 57 | Edmonton 58 | AB 59 | T6E5Z4 60 | CA 61 |
62 |
63 | 64 | SENDER 65 | 66 | 67 | US 68 | 69 | 70 | 71 | 72 | 73 | 74 | ABHAY 75 | Syntel 76 | 9922298345 77 | pritpal_sahani@syntelinc.com 78 | 79 |
80 | String 81 | city 82 | TN 83 | 38017 84 | US 85 |
86 |
87 | 88 | SENDER 89 | 90 | 150067065 91 | US 92 | 93 | 94 | DOCUMENTS_ONLY 95 | 96 | USD 97 | 100.00 98 | 99 | 100 | FOB_OR_FCA 101 | 102 | 103 | 1 104 | ABCD 105 | US 106 | 107 | LB 108 | 1.0 109 | 110 | 1 111 | cm 112 | 113 | USD 114 | 1.000000 115 | 116 | 117 | USD 118 | 100.000000 119 | 120 | 121 | 122 | 30.37(f) 123 | 124 |
125 | 126 | COMMON2D 127 | PNG 128 | PAPER_7X4.75 129 | 130 | ACCOUNT 131 | 1 132 | INDIVIDUAL_PACKAGES 133 | 134 | 1 135 | 136 | LB 137 | 20.0 138 | 139 | 140 | 12 141 | 12 142 | 12 143 | IN 144 | 145 | 146 | CUSTOMER_REFERENCE 147 | TC001_01_PT1_ST01_PK01_SNDUS_RCPCA_POS 148 | 149 | 150 | DANGEROUS_GOODS 151 | 152 | ACCESSIBLE 153 | 154 | 155 | 156 |
157 |
158 |
159 |
160 | -------------------------------------------------------------------------------- /wsdl/ups/Error1.1.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /wsdl/ups/RateWS.wsdl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /wsdl/ups/UPSSecurity.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /wsdl/ups/Void.wsdl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /wsdl/ups/VoidWebServiceSchema.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /wsdl/ups/XAV.wsdl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /wsdl/ups/XAVWebServiceSchema.xsd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsdl/ups/common.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | --------------------------------------------------------------------------------