-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathShipping.yaml
12748 lines (12593 loc) · 504 KB
/
Shipping.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Ship
termsOfService: https://www.ups.com/upsdeveloperkit/assets/html/serviceAgreement.html
version: ''
description: |
The Shipping Package API gives the application many ways to manage the shipment of packages to their destination.
- <a href="https://developer.ups.com/api/reference/shipping/business-rules" target="_blank" rel="noopener">Business Rules</a>
- <a href="https://developer.ups.com/api/reference/shipping/appendix1" target="_blank" rel="noopener">Appendix 1</a>
- <a href="https://developer.ups.com/api/reference/shipping/appendix2" target="_blank" rel="noopener">Appendix 2</a>
- <a href="https://developer.ups.com/api/reference/shipping/errors" target="_blank" rel="noopener">Errors</a>
- <a href="https://developer.ups.com/api/reference/shipping/faq" target="_blank" rel="noopener">FAQ</a>
- <a href="https://github.com/UPS-API" target="_blank" rel="noopener noreferrer">GitHub - view sample integration code</a>
<a href="https://god.gw.postman.com/run-collection/29542085-af2f70b3-405b-4aee-af8d-1eb715e4cebc?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D29542085-af2f70b3-405b-4aee-af8d-1eb715e4cebc%26entityType%3Dcollection%26workspaceId%3D7e7595f0-4829-4f9a-aee1-75c126b9d417" target="_blank" rel="noopener noreferrer">
<img src="https://run.pstmn.io/button.svg" alt="Run In Postman" style="width: 128px; height: 32px;">
</a>
servers:
- url: https://wwwcie.ups.com/api
description: Customer Integration Environment
- url: https://onlinetools.ups.com/api
description: Production
paths:
"/shipments/{version}/ship":
post:
description: "The Shipping API makes UPS shipping services available to client
applications that communicate with UPS \nusing the Internet"
summary: Shipment
tags:
- Shipping
security:
- OAuth2: []
operationId: Shipment
parameters:
- in: header
name: transId
schema:
type: string
description: An identifier unique to the request. Length 32
required: false
- in: header
name: transactionSrc
schema:
type: string
default: testing
description: An identifier of the client/source application that is making
the request.Length 512
required: false
- in: query
name: additionaladdressvalidation
schema:
type: string
minimum: 1
description: "Valid Values: \ncity = validation will include city.Length 15"
required: false
- in: path
name: version
schema:
type: string
minimum: 1
default: v2403
description: |
Indicates Ship API to display the new release features in Ship API response based on Ship release.
Valid values:
- v2403
required: true
requestBody:
description: Generate sample code for popular API requests by selecting an
example below. To view a full sample request and response, first click "Authorize"
and enter your application credentials, then populate the required parameters
above and click "Try it out".
required: true
content:
application/json:
schema:
"$ref": "#/components/schemas/SHIPRequestWrapper"
examples:
'1':
summary: Shipping Request(Standard Example)
value:
ShipmentRequest:
Request:
SubVersion: '1801'
RequestOption: nonvalidate
TransactionReference:
CustomerContext: ''
Shipment:
Description: Ship WS test
Shipper:
Name: ShipperName
AttentionName: ShipperZs Attn Name
TaxIdentificationNumber: '123456'
Phone:
Number: '1115554758'
Extension: " "
ShipperNumber: " "
FaxNumber: '8002222222'
Address:
AddressLine:
- 2311 York Rd
City: Timonium
StateProvinceCode: MD
PostalCode: '21093'
CountryCode: US
ShipTo:
Name: Happy Dog Pet Supply
AttentionName: 1160b_74
Phone:
Number: '9225377171'
Address:
AddressLine:
- 123 Main St
City: timonium
StateProvinceCode: MD
PostalCode: '21030'
CountryCode: US
Residential: " "
ShipFrom:
Name: T and T Designs
AttentionName: 1160b_74
Phone:
Number: '1234567890'
FaxNumber: '1234567890'
Address:
AddressLine:
- 2311 York Rd
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '03'
Description: Express
Package:
Description: " "
Packaging:
Code: '02'
Description: Nails
Dimensions:
UnitOfMeasurement:
Code: IN
Description: Inches
Length: '10'
Width: '30'
Height: '45'
PackageWeight:
UnitOfMeasurement:
Code: LBS
Description: Pounds
Weight: '5'
LabelSpecification:
LabelImageFormat:
Code: GIF
Description: GIF
HTTPUserAgent: Mozilla/4.5
'2':
summary: Shipping Request with Negotiated Rates
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
SubVersion: '1601'
TransactionReference:
CustomerContext: ''
Shipment:
TaxInformationIndicator: ''
ShipmentRatingOptions:
NegotiatedRatesIndicator: X
Description: 1507 US shipment
Shipper:
Name: Shipper_name
AttentionName: Shipper_Attn.name
CompanyDisplayableName: Shipper_company
ShipperNumber: ''
Phone:
Number: '5555555555'
Address:
AddressLine:
- Shipper_Addrline1
City: BERLIN
StateProvinceCode: ''
PostalCode: '10785'
CountryCode: DE
ShipTo:
Name: ShipTo_name
AttentionName: ShipTo_Attn.name
CompanyDisplayableName: ShipTo_company
Phone:
Number: '5555555555'
Address:
AddressLine:
- Shipper_Addrline1
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
ShipFrom:
Name: ShipFrom_name
AttentionName: ShipFrom_Attn.name
CompanyDisplayableName: ShipFrom_company
Address:
AddressLine:
- ShipFrom_Addrline1
City: BERLIN
StateProvinceCode: ''
PostalCode: '10785'
CountryCode: DE
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: ''
Service:
Code: '07'
Description: UPS
Package:
Description: Package1
Packaging:
Code: '02'
Description: Customer Supplied Package
Dimensions:
UnitOfMeasurement:
Code: CM
Description: Centimeters
Length: '8'
Width: '2'
Height: '2'
PackageWeight:
UnitOfMeasurement:
Code: KGS
Description: Kilograms
Weight: '20.2'
'3':
summary: Shipping Request with International Forms
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
TransactionReference:
CustomerContext: ''
Shipment:
Description: Description of Goods
Shipper:
Name: Henry Lee Thomson
AttentionName: John Smith
ShipperNumber: " "
TaxIdentificationNumber: '456789'
Phone:
Number: '1234567890'
Address:
AddressLine:
- 34 Queen St
City: Toronto
StateProvinceCode: 'ON'
PostalCode: M5C2M6
CountryCode: CA
ShipTo:
Name: Happy Dog Pet Supply
AttentionName: Marley Brinson
TaxIdentificationNumber: '458889'
Phone:
Number: '1234567890'
Address:
AddressLine:
- B.B. King Blvd.
City: Charlotte
StateProvinceCode: NC
PostalCode: '28256'
CountryCode: US
ShipFrom:
Name: T and T Designs
AttentionName: Mike
Phone:
Number: '1234567890'
FaxNumber: '1234567999'
TaxIdentificationNumber: '456999'
Address:
AddressLine:
- 34 Queen St
City: Toronto
StateProvinceCode: 'ON'
PostalCode: M5C2M6
CountryCode: CA
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '08'
Description: Expedited
Package:
Description: International Goods
Packaging:
Code: '02'
PackageWeight:
UnitOfMeasurement:
Code: KGS
Weight: '10'
ShipmentServiceOptions:
InternationalForms:
FormType: '04'
FormGroupIdName: NAFTA Form
Contacts:
SoldTo:
Option: " "
Name: ACME Designs
AttentionName: Wile E Coyote
TaxIdentificationNumber: " "
Phone:
Number: '5551479876'
Address:
AddressLine:
- 123 Main St
City: Phoenix
StateProvinceCode: GA
PostalCode: '30076'
CountryCode: US
Producer:
Option: " "
CompanyName: Tree Service
Address:
AddressLine:
- 678 Elm St
City: Marietta
StateProvinceCode: GA
PostalCode: '30066'
CountryCode: US
Phone:
Number: '5555555555'
EmailAddress: " "
TaxIdentificationNumber: " "
Product:
Description: Today is the best day of the week
CommodityCode: '12345678'
OriginCountryCode: US
JointProductionIndicator: " "
NetCostCode: NC
NetCostDateRange:
BeginDate: '20050801'
EndDate: '20051015'
PreferenceCriteria: A
ProducerInfo: No[1]
BlanketPeriod:
BeginDate: '20050115'
EndDate: '20050816'
LabelSpecification:
LabelImageFormat:
Code: GIF
'4':
summary: Shipping Dry Ice or Lithium Batteries
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
TransactionReference:
CustomerContext: ''
SubVersion: '1701'
Shipment:
DGSignatoryInfo:
UploadOnlyIndicator: Y
ShipperDeclaration: '01'
Date: '20200112'
Place: GA
Title: DGPaperImage
Name: DGSignatory
Description: ER1703
Shipper:
Name: Shipper_Name
AttentionName: Shipper_AttentionName
TaxIdentificationNumber: '123456'
Phone:
Number: '1234567890'
ShipperNumber: " "
Address:
AddressLine:
- 12380 Morris Rd
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
ShipTo:
Name: ShipTo_CompanyName
AttentionName: ShipTo_AttentionName
Phone:
Number: '1234567890'
FaxNumber: '1234567890'
TaxIdentificationNumber: '123456'
Address:
AddressLine:
- 793 Foothill Blvd
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
ShipFrom:
Name: ShipFrom_CompanyName
AttentionName: ShipFrom_AttentionName
Phone:
Number: '1234567890'
FaxNumber: '1234567890'
TaxIdentificationNumber: '123456'
Address:
AddressLine:
- 12380 Morris Rd
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '03'
Description: Ground
Package:
- HazMatPackageInformation:
OuterPackagingType: FIBERBOARD BOX
QValue: '0.1'
OverPackedIndicator: " "
AllPackedInOneIndicator: " "
Description: Package Description
Packaging:
Code: '02'
Description: Customer Supplied Package
Dimensions:
Length: '10'
Width: '10'
Height: '10'
UnitOfMeasurement:
Code: IN
Description: Inches
PackageWeight:
UnitOfMeasurement:
Code: LBS
Description: Pounds
Weight: '10'
PackageServiceOptions:
HazMat:
LocalProperShippingName: Ship
LocalTechnicalName: Local
EmergencyPhone: '1234567890'
ReferenceNumber: '12345'
HazardLabelRequired: Y
aDRPackingGroupLetter: '1'
PackagingTypeQuantity: '100'
SubRiskClass: SubRisk
aDRItemNumber: '1234567890'
TechnicalName: Hazmat TechnicalName
ClassDivisionNumber: '12345'
Quantity: '100.0'
UOM: IN
PackagingType: Box
IDNumber: UN3480
ProperShippingName: Lithium ion batteries
AdditionalDescription: Hazmat AdditionalDescription
PackagingGroupType: III
PackagingInstructionCode: '1234'
ReportableQuantity: RQ
RegulationSet: CFR
TransportationMode: Ground
CommodityRegulatedLevelCode: LQ
TransportCategory: '0'
TunnelRestrictionCode: Nothing
ChemicalRecordIdentifier: '100'
PackageIdentifier: '123'
- Description: DG
NumOfPieces: '10'
Packaging:
Code: '02'
Description: desc
Dimensions:
UnitOfMeasurement:
Code: IN
Description: IN
Length: '2'
Width: '2'
Height: '2'
PackageWeight:
UnitOfMeasurement:
Code: LBS
Description: LBS
Weight: '50'
PackageServiceOptions:
DryIce:
RegulationSet: CFR
DryIceWeight:
UnitOfMeasurement:
Code: '01'
Description: LBS
Weight: '50'
PackedByStoreIndicator: " "
PackageIdentifier: '123'
LabelSpecification:
LabelImageFormat:
Code: GIF
'5':
summary: Shipping Hazmat Goods
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
TransactionReference:
CustomerContext: ''
SubVersion: '1701'
Shipment:
Description: Ship WS test
Shipper:
Name: ShipperName
AttentionName: ShipperZs Attn Name
TaxIdentificationNumber: '123456'
Phone:
Number: '1115554758'
Extension: '1'
ShipperNumber: " "
FaxNumber: '8002222222'
Address:
AddressLine:
- 12380 Morris Road
City: LUTHERVILLE TIMONIUM
StateProvinceCode: MD
PostalCode: '21093'
CountryCode: US
ShipTo:
Name: Happy Dog Pet Supply
AttentionName: 1160b_74
Phone:
Number: '9225377171'
Address:
AddressLine:
- 460 Rue du Valibout
City: SMITHFIELD
StateProvinceCode: RI
PostalCode: '02917'
CountryCode: US
ShipFrom:
Name: T and T Designs
AttentionName: 1160b_74
Phone:
Number: '1234567890'
FaxNumber: '1234567890'
Address:
AddressLine:
- 12380 Morris Road
City: LUTHERVILLE TIMONIUM
StateProvinceCode: MD
PostalCode: '21093'
CountryCode: US
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '03'
Description: UPS Worldwide Saver
Package:
Description: UPS Worldwide Saver
Packaging:
Code: '02'
Dimensions:
UnitOfMeasurement:
Code: IN
Length: '6'
Width: '9'
Height: '7'
PackageWeight:
UnitOfMeasurement:
Code: LBS
Weight: '68'
PackageServiceOptions:
PackageIdentifier: '12380'
HazMat:
PackagingTypeQuantity: '1'
SubRiskClass: " "
TechnicalName: OXYGEN/NITROGEN
ClassDivisionNumber: '2.2'
Quantity: '6'
UOM: kg
PackagingType: Fibreboard Box
IDNumber: UN3480
ProperShippingName: Lithium Ion Batteries
PackagingGroupType: " "
PackagingInstructionCode: Pack
EmergencyPhone: '9253702575'
EmergencyContact: Shipping Dept.
RegulationSet: CFR
TransportationMode: CAO
CommodityRegulatedLevelCode: FR
TransportCategory: xyz
TunnelRestrictionCode: xyz
ChemicalRecordIdentifier: '40'
NumOfPiecesInShipment: '10000'
LabelSpecification:
LabelImageFormat:
Code: GIF
Description: GIF
HTTPUserAgent: Mozilla/4.5
'6':
summary: Billing Third Party
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
SubVersion: '1901'
TransactionReference:
CustomerContext: ''
Shipment:
Description: Payments
Shipper:
Name: Shipper_name
AttentionName: Shipper_name
CompanyDisplayableName: Shipper_name
Phone:
Number: '1234567890'
Extension: '1234'
ShipperNumber: " "
FaxNumber: '1234'
EMailAddress: " "
Address:
AddressLine:
- ShipperAddress
- ShipperAddress
- ShipperAddress
City: 01-222 Warszawa
StateProvinceCode: GA
PostalCode: '1222'
CountryCode: PL
ShipTo:
Name: ShipToName
AttentionName: ShipToName
CompanyDisplayableName: ShipToName
Phone:
Number: '1234567890'
Extension: '1234'
FaxNumber: '1234'
EMailAddress: " "
Address:
AddressLine:
- ShipToAddress
- ShipToAddress
- ShipToAddress
City: 01-222 Warszawa
StateProvinceCode: GA
PostalCode: '1222'
CountryCode: PL
ShipFrom:
Name: ShipFromName
AttentionName: ShipFromName
CompanyDisplayableName: ShipFromName
TaxIdentificationNumber: '1234'
TaxIDType:
Code: EIN
Description: EIN
Phone:
Number: '1234567890'
Extension: '1234'
ShipFromAccountNumber: " "
FaxNumber: '1234'
Address:
AddressLine:
- ShipFromAddress
- ShipFromAddress
- ShipFromAddress
City: 01-222 Warszawa
StateProvinceCode: GA
PostalCode: '1222'
CountryCode: PL
EMailAddress: " "
PaymentInformation:
ShipmentCharge:
Type: '01'
BillThirdParty:
AccountNumber: " "
Name: " "
AttentionName: " "
VatTaxID: 1234AB
TaxIDType: '01'
CertifiedElectronicMail: abc@123.123
InterchangeSystemCode: SDI
SuppressPrintInvoiceIndicator: " "
Address:
PostalCode: '30005'
CountryCode: US
Service:
Code: '011'
Description: Standard
InvoiceLineTotal:
CurrencyCode: USD
MonetaryValue: '10'
NumOfPiecesInShipment: '1'
USPSEndorsement: '5'
CostCenter: '123'
PackageID: '1'
InformationSourceCode: A3
ShipmentServiceOptions: " "
Package:
Description: IF
NumOfPieces: '10'
Packaging:
Code: '02'
Description: desc
Dimensions:
UnitOfMeasurement:
Code: CM
Description: CM
Length: '2'
Width: '2'
Height: '3'
PackageWeight:
UnitOfMeasurement:
Code: KGS
Description: LBS
Weight: '50'
LabelSpecification:
LabelImageFormat:
Code: GIF
Description: GIF
'7':
summary: Multi-Piece Shipping
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
SubVersion: '1701'
TransactionReference:
CustomerContext: ''
Shipment:
Package:
- PackageWeight:
Weight: '50'
UnitOfMeasurement:
Description: desc
Code: LBS
Dimensions:
Height: '2'
Width: '2'
Length: '02'
UnitOfMeasurement:
Description: desc
Code: IN
Packaging:
Description: desc
Code: '02'
Description: desc
- PackageWeight:
Weight: '50'
UnitOfMeasurement:
Description: desc
Code: LBS
Dimensions:
Height: '2'
Width: '2'
Length: '02'
UnitOfMeasurement:
Description: desc
Code: IN
Packaging:
Description: desc
Code: '02'
Description: desc
- Description: desc
Packaging:
Code: '02'
Description: desc
Dimensions:
UnitOfMeasurement:
Code: IN
Description: desc
Length: '02'
Width: '2'
Height: '2'
PackageWeight:
UnitOfMeasurement:
Code: LBS
Description: desc
Weight: '50'
Description: UPS Premier
Shipper:
Name: ShipperName
AttentionName: GA
CompanyDisplayableName: GA
TaxIdentificationNumber: '12345'
Phone:
Number: '1234567890'
Extension: '12'
ShipperNumber: " "
FaxNumber: '2134'
EMailAddress: " "
Address:
AddressLine:
- address
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
ShipTo:
Name: ship
AttentionName: GA
CompanyDisplayableName: GA
TaxIdentificationNumber: '1234'
Phone:
Number: '1234567890'
Extension: '12'
FaxNumber: '1234'
EMailAddress: " "
Address:
AddressLine:
- AddressLine
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
ResidentialAddressIndicator: Y
ShipFrom:
Name: ship
AttentionName: GA
CompanyDisplayableName: ShipFrom_CompanyDisplayableName
TaxIdentificationNumber: '5555555555'
Phone:
Number: '1234567890'
Extension: '12'
FaxNumber: '5555555555'
Address:
AddressLine:
- AddressLine
City: Alpharetta
StateProvinceCode: GA
PostalCode: '30005'
CountryCode: US
EMailAddress: " "
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '01'
Description: desc
LabelSpecification:
LabelImageFormat:
Code: ZPL
Description: desc
HTTPUserAgent: Mozilla/4.5
LabelStockSize:
Height: '6'
Width: '4'
'8':
summary: Ship to a UPS Access Point
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
TransactionReference:
CustomerContext: ''
Shipment:
Description: D2R shipments
Shipper:
Name: Shipper Name
AttentionName: Attn. Name
CompanyDisplayableName: Shipper company
TaxIdentificationNumber: '456789'
Phone:
Number: '5555555555'
ShipperNumber: " "
EMailAddress: " "
Address:
AddressLine:
- AddressLine1
City: BOLTON
StateProvinceCode: 'ON'
PostalCode: '20999'
CountryCode: DE
ShipTo:
Name: ShipTo Name
AttentionName: ShipTo Attn. Name
CompanyDisplayableName: ShipTo Company
Phone:
Number: '6787462345'
EMailAddress: " "
Address:
AddressLine:
- Morris Rd
City: Alpharetta
StateProvinceCode: 'ON'
PostalCode: L7E5C1
CountryCode: CA
AlternateDeliveryAddress:
AttentionName: Attn. Name
Name: Alt. Name
UPSAccessPointID: GB00088
Address:
AddressLine:
- Morris RD
City: Alpharetta
StateProvinceCode: 'ON'
PostalCode: '20999'
CountryCode: DE
ShipFrom:
Name: ShipFrom Name
AttentionName: ShipFrom Attn. Name
CompanyDisplayableName: ShipFrom company
Phone:
Number: '6787463456'
ShipFromAccountNumber: " "
Address:
AddressLine:
- Old Alpharetta rd
City: BOLTON
StateProvinceCode: 'ON'
PostalCode: '20999'
CountryCode: DE
EMailAddress: " "
PaymentInformation:
ShipmentCharge:
Type: '01'
BillShipper:
AccountNumber: " "
Service:
Code: '11'
Description: Express
ShipmentIndicationType:
Code: '01'
Description: D2R shipment
ShipmentServiceOptions:
Notification:
NotificationCode: '012'
EMail:
EMailAddress: " "
VoiceMessage:
PhoneNumber: '5555555555'
TextMessage:
PhoneNumber: '5555555555'
Locale:
Language: ENG
Dialect: US
Package:
Description: D2R shipment
Packaging:
Code: '02'
Description: D2R package
Dimensions:
UnitOfMeasurement:
Code: CM
Description: Centemeters
Length: '5'
Width: '6'
Height: '7'
PackageWeight:
UnitOfMeasurement:
Code: KGS
Description: Kilograms
Weight: '15'
PackageServiceOptions:
DeclaredValue:
Type:
Code: '01'
Description: Declared value
CurrencyCode: EUR
MonetaryValue: '10.30'
LabelSpecification:
LabelImageFormat:
Code: GIF
LabelStockSize:
Height: '6'
Width: '4'
'9':
summary: World Wide Economy Shipping
value:
ShipmentRequest:
Request:
RequestOption: nonvalidate
SubVersion: '2108'
TransactionReference:
CustomerContext: ''
Shipment:
Description: Worldwide econmoy Parcel
Shipper:
Name: Shipper_name
AttentionName: UPS
CompanyDisplayableName: Shipper_name
Phone:
Number: '1234567890'
Extension: '1234'
ShipperNumber: ''
FaxNumber: '1234'
EMailAddress: ''
Address:
AddressLine:
- 2311 York Rd
- 2311 York Rd
- 2311 York Rd