<?xml version="1.0" standalone="yes"?>
<Shipments>
	<Shipment><!--The shipment is defined within this tag. If you want to define several shipments, you can add any amount of shipment tags-->
		<Header>
			<PrinterKey>022</PrinterKey><!--Defines Printer to use when printing labels-->
			<AdditionalPrinterKey>023</AdditionalPrinterKey><!--Defines Printer to use when printing freight documents-->
			<CarrierCode>CarrierParcel</CarrierCode><!--Determines choice of freight method-->
			<ServiceCode>DAP</ServiceCode><!--Defines Incoterm, and other services. Can be used in conjunction-->
			<ActorName>Production01</ActorName><!--This can be used to switch between carrier account numbers, sender adresses etc. -->
			<Operator>Anne</Operator><!--Username from ERP/VMS-->
		</Header>
		<Reference>
			<OrderNumber>12356abc78</OrderNumber><!--Your ordernumber-->
			<AdditionalOrderNumbers>12356abc79 12356abc80 12356abc81</AdditionalOrderNumbers><!--Used if one shipment containes other orders/references than the ordernumber-->
			<MessageToCarrier></MessageToCarrier><!--Message to carrier-->
			<MessageToReceiver></MessageToReceiver><!--Message to receiver-->
			<MessageToDriver>Please place package on front door step</MessageToDriver><!--Message to driver-->
			<ReceiverReference></ReceiverReference><!--The receivers reference-->
			<Pickupstart>02-12-2020</Pickupstart><!--Earliest time the carrier should pickup the goods-->
			<PickupEnd>02-12-2020</PickupEnd><!--Latest time the carrier should pickup the goods-->
			<DeliveryStart>03-12-2020</DeliveryStart><!--Earliest time the carrier should deliver the goods-->
			<DeliveryEnd>03-12-2020</DeliveryEnd><!--Latest time the carrier should deliver the goods-->
		</Reference><!--Not all carriers use both pickup/delivery start and end. Some only use one or two of the values and some do not use them at all-->
		<Addresses>
			<Receiver>
				<ID>cust1234</ID><!--Receiver customer number, in ERP/WMS-->
				<Name>John Doe</Name><!--Receiver name1-->
				<Name2></Name2><!--Receiver name2-->
				<Attention>Mr Doe</Attention><!--Receiver attention-->
				<Address1>10 Test Street</Address1><!--Receiver address1-->
				<Address2></Address2><!--Receiver address2-->
				<PostCode>75008</PostCode><!--Receiver Postal code-->
				<City>Paris</City><!--Receiver city-->
				<CountryCode>FR</CountryCode><!--Receiver country. Default 2 characters, like in ISO2-->
				<Phone>12312312</Phone><!--Receiver phone number-->
				<Fax>12312312</Fax><!--Receiver fax number-->
				<Mobile>12312312</Mobile><!--Receiver cell phone number-->
				<EMail>test@test.com</EMail><!--Receiver email address-->
			</Receiver>
			<PickUpPoint>
				<ID>12345</ID><!--Droppoint identification number-->
			</PickUpPoint>
		</Addresses>
		<Goodslines>
			<Goodsline>
				<NoOfPackages>3</NoOfPackages><!--Number of packages on the goodsline--> 
				<GoodsType>Packet</GoodsType><!--Goodstype, defines the type of the goods, e.g. box, pallet, barrel etc.-->
				<Weight>40,6</Weight><!--Weight of the package, the units can be adapted-->
				<Contents>Car parts</Contents><!--Contents could be Medication/Textiles/Machine parts etc.-->
				<Length>20</Length><!--Length of the package, the units can be adapted-->
				<Width>30</Width><!--Width of the package, the units can be adapted-->
				<Height>10</Height><!--Heigth of the package, the units can be adapted-->
				<Volume>6000</Volume><!--Volume of the package, the units can be adapted - The value is automatically calculated if the dimensions are defined-->
				<Loadmeter>1</Loadmeter><!--Loading meter, cannot be calculated automatically-->
			</Goodsline>
			<Goodsline><!--If you want to define several goodslines, you can repeat the Goodsline segment-->
				<NoOfPackages>1</NoOfPackages>
				<GoodsType>Packet</GoodsType>
				<Weight>4,6</Weight>
				<Contents>Pastery</Contents>
				<Length>20</Length>
				<Width>2</Width>
				<Height>10</Height>
				<Volume>10</Volume>
				<Loadmeter>2</Loadmeter>
			</Goodsline>
		</Goodslines>
	</Shipment>
</Shipments>