Purpose
Create/Save a consignment within the OneFlo System. This information will be stored within OneFlo, for Label Generation, Manifesting and Booking. subsequent steps can be done Manually in the App or via API
Info |
---|
In this instance I am making a call to GetChargeQuote in my uat environment through postman, Things I need to perform this call:
*Learn how to chain this call in 5) Creating Chained Requests |
Endpoint: https://bau-uat-wsthirdpartywcf.flipgroup.azurewebsites.net/Data/ChainITcom.au/DataService.svc
Headers:
...
This is not the production endpoint. The production endpoint will be provided once all requests have been validated to work correctly.
Headers:
- Key: Content-Type Value: text/xml
- Key: SoapAction Value: http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices/IChainITService/SaveConsignment
...
Code Block | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cha="http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices">
<soapenv:Header/>
<soapenv:Body>
<cha:SaveConsignment>
<!-- Session Credentials Available By following the "Login Web Service Call"
https://flipgroup.atlassian.net/wiki/spaces/FLIP/pages/703102977/2a+Example+Web+Service+Call+Login-->
<cha:session>
<cha:AccountID>115860</cha:AccountID>
<!--Mandatory:-->
<cha:DistributorID>101605</cha:DistributorID>
<!--Mandatory:-->
<cha:Expires>2018-08-16T15:15:55.89</cha:Expires>
<!--Mandatory:-->
<cha:Key>E36D344D-DCA9-45B8-8FCD-2F049B1E73B3</cha:Key>
<!--Mandatory:-->
<cha:UserID>64796</cha:UserID>
<!--Mandatory:-->
</cha:session>
<cha:consignment>
<!--Optional:-->
<cha:AccountID>?</cha:AccountID>
<!--Optional:-->
<cha:CloseAt>?</cha:CloseAt>
<!--Optional:-->
<cha:ConsignmentDate>?</cha:ConsignmentDate>
<!--Optional:-->
<cha:ConsignmentID>?</cha:ConsignmentID>
<!--Optional:-->
<cha:ConsignmentItems>
<!--Zero or more repetitions:-->
<cha:ConsignmentItem>
<!--Optional:-->
<cha:Barcode>?</cha:Barcode>
<!--Optional:-->
<cha:ConsignmentID>?</cha:ConsignmentID>
<!--Optional:-->
<cha:ConsignmentProduct>
<!--Optional:-->
<cha:AccountID>?</cha:AccountID>
<!--Optional:-->
<cha:Code>?</cha:Code>
<!--Optional:-->
<cha:DangerousGoods>
<!--Optional:-->
<cha:AggrigateQuantity>?</cha:AggrigateQuantity>
<!--Optional:-->
<cha:ConsignmentID>?</cha:ConsignmentID>
<!--Optional:-->
<cha:DangerousGoodsID>?</cha:DangerousGoodsID>
<!--Optional:-->
<cha:DgClass>?</cha:DgClass>
<!--Optional:-->
<cha:Exception>
<!--Optional:-->
<cha:Message>?</cha:Message>
<!--Optional:-->
<cha:ModuleName>?</cha:ModuleName>
<!--Optional:-->
<cha:ProcedureName>?</cha:ProcedureName>
</cha:Exception>
<!--Optional:-->
<cha:Group>?</cha:Group>
<!--Optional:-->
<cha:ID>?</cha:ID>
<!--Optional:-->
<cha:ItemNo>?</cha:ItemNo>
<!--Optional:-->
<cha:LiquidVolume>?</cha:LiquidVolume>
<!--Optional:-->
<cha:Liquidweight>?</cha:Liquidweight>
<!--Optional:-->
<cha:Name>?</cha:Name>
<!--Optional:-->
<cha:PSN>?</cha:PSN>
<!--Optional:-->
<cha:Quantity>?</cha:Quantity>
<!--Optional:-->
<cha:Recepticle>?</cha:Recepticle>
<!--Optional:-->
<cha:SubRisk>?</cha:SubRisk>
<!--Optional:-->
<cha:UnCode>?</cha:UnCode>
<!--Optional:-->
<cha:Units>?</cha:Units>
<!--Optional:-->
<cha:Volume>?</cha:Volume>
<!--Optional:-->
<cha:Weight>?</cha:Weight>
</cha:DangerousGoods>
<!--Optional:-->
<cha:DangerousGoodsID>?</cha:DangerousGoodsID>
<!--Optional:-->
<cha:Error>
<!--Optional:-->
<cha:Message>?</cha:Message>
<!--Optional:-->
<cha:ModuleName>?</cha:ModuleName>
<!--Optional:-->
<cha:ProcedureName>?</cha:ProcedureName>
</cha:Error>
<!--Optional:-->
<cha:Height>?</cha:Height>
<!--Optional:-->
<cha:IsActive>?</cha:IsActive>
<!--Optional:-->
<cha:Length>?</cha:Length>
<!--Optional:-->
<cha:Name>?</cha:Name>
<!--Optional:-->
<cha:ProductID>?</cha:ProductID>
<!--Optional:-->
<cha:Volume>?</cha:Volume>
<!--Optional:-->
<cha:Weight>?</cha:Weight>
<!--Optional:-->
<cha:Width>?</cha:Width>
</cha:ConsignmentProduct>
<!--Optional:-->
<cha:Description>?</cha:Description>
<!--Optional:-->
<cha:ExchangeReturnable>?</cha:ExchangeReturnable>
<!--Optional:-->
<cha:Height>?</cha:Height>
<!--Optional:-->
<cha:ItemNo>?</cha:ItemNo>
<!--Optional:-->
<cha:ItemType>?</cha:ItemType>
<!--Optional:-->
<cha:Length>?</cha:Length>
<!--Optional:-->
<cha:ModifiedBy>?</cha:ModifiedBy>
<!--Optional:-->
<cha:NoItems>?</cha:NoItems>
<!--Optional:-->
<cha:ProductID>?</cha:ProductID>
<!--Optional:-->
<cha:Reference>?</cha:Reference>
<!--Optional:-->
<cha:Returnable>?</cha:Returnable>
<!--Optional:-->
<cha:Volume>?</cha:Volume>
<!--Optional:-->
<cha:Weight>?</cha:Weight>
<!--Optional:-->
<cha:Width>?</cha:Width>
</cha:ConsignmentItem>
</cha:ConsignmentItems>
<!--Optional:-->
<cha:ConsignmentNote>?</cha:ConsignmentNote>
<!--Optional:-->
<cha:ConsignmentType>?</cha:ConsignmentType>
<!--Optional:-->
<cha:ConsolidatedSus>
<!--Zero or more repetitions:-->
<cha:ConsolidateConsignment>
<!--Optional:-->
| ||||||||||||
This is a complex type. For field information, please see https://flipgroup.atlassian.net/wiki/spaces/OIUG/pages/716570801/2-0+Complex+Types#id-2-0)ComplexTypes-complextype_consignmentConsignment |
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices"> <soapenv:Header/> <soapenv:Body> <SaveConsignment> <cha:Height>?</cha:Height> <session> <!--Optional:--><AccountID>{{AccountID}}</AccountID> <DistributorID>{{DistributorID}}</DistributorID> <cha:ItemType>?</cha:ItemType> <Expires>{{Expires}}</Expires> <!--Optional:--><Key>{{Key}}</Key> <UserID>{{UserID}}</UserID> <cha:Items>?</cha:Items> </session> <!--Optional:--> <consignment> <cha:Length>?</cha:Length><AccountID>{{AccountID}}</AccountID> <AllowConsolidation>true</AllowConsolidation> <!--Optional:--> <CloseAt>16:00</CloseAt> <cha:Volume>?</cha:Volume> <ConsignmentDate>2019-10-19</ConsignmentDate> <!--Optional:--> <ConsignmentItems> <cha:Weight>?</cha:Weight> <ConsignmentItem> <!--Optional:--> <cha:Width>?</cha:Width><ConsignmentProduct> </cha:ConsolidateConsignment> </cha:ConsolidatedSus><Cubic>0.0152</Cubic> <!--Optional:--> <cha:ContainingConsignment>?</cha:ContainingConsignment><DangerousGoods> <!--Optional:--> <cha:DeliveryInstructions>?</cha:DeliveryInstructions> <AggQty>4</AggQty> <!--Optional:--> <cha:Description>?</cha:Description> <!--Optional:--><Class>2.1</Class> <cha:DistributorID>?</cha:DistributorID> <!--Optional:--> <Group>NONE</Group> <cha:DownloadID>?</cha:DownloadID> <!--Optional:--> <cha:Exception><Name>AEROSOLS</Name> <!--Optional:--> <cha:Message>?</cha:Message> <PSN>AEROSOLS IN A CAN</PSN> <!--Optional:--> <cha:ModuleName>?</cha:ModuleName> <Qty>1</Qty> <!--Optional:--> <cha:ProcedureName>?</cha:ProcedureName> <Receptacle>CAN</Receptacle> </cha:Exception> <!--Optional:--> <cha:Ext><SubRisk>N/A</SubRisk> <!--Optional:--> <cha:ConsignmentID>?</cha:ConsignmentID><UnCode>1950</UnCode> <!--Optional:--> <cha:CostCenter>?</cha:CostCenter><Units>kg</Units> <!--Optional:--> </DangerousGoods> <cha:ThirdPartyAccount>?</cha:ThirdPartyAccount> <!--Optional:-->/ConsignmentProduct> <cha:UserField1>?</cha:UserField1> <Description>SMALL CARTON</Description> <!--Optional:--> <cha:UserField2>?</cha:UserField2> <Height>16</Height> <!--Optional:--> <cha:UserField3>?</cha:UserField3> <ItemNo>1</ItemNo> <!--Optional:--> <cha:UserField4>?</cha:UserField4> <ItemType>SMALL CARTON</ItemType> <!--Optional:--> <cha:UserField5>?</cha:UserField5><Length>38</Length> </cha:Ext> <!--Optional:--><NoItems>1</NoItems> <cha:ExtraInfo>?</cha:ExtraInfo> <PackagingType>CTN</PackagingType> <!--Optional: https://flipgroup.atlassian.net/wiki/spaces/OIUG/pages/961445944/Shipping+Items+-+Packaging+Type --> <cha:Hours>?</cha:Hours> <Reference /> <!--Optional:--> <cha:ModifiedBy>?</cha:ModifiedBy> <Weight>5</Weight> <!--Optional:--> <cha:NoItems>?</cha:NoItems> <Width>25</Width> <!--Optional:--> <cha:OnForwarder>?</cha:OnForwarder>ConsignmentItem> <!--Optional:--> </ConsignmentItems> <cha:PickupInstructions>?</cha:PickupInstructions> <DeliveryInstructions>Deliver to Front <!--Optional:-->Door.</DeliveryInstructions> <cha:ReadyAt>?</cha:ReadyAt> <Description /> <!--Optional:--> <DistributorID>101605</DistributorID> <Ext> <UserField1>123456</UserField1> <cha:Receiver> </Ext> <!--Optional:--> <ReadyAt>14:00</ReadyAt> <Receiver> <AddressLocation> <cha:AccountID>?</cha:AccountID> <Locality>Nunawading</Locality> <!--Optional:--> <State>VIC</State> <cha:AddressID>?</cha:AddressID> <Postcode>3131</Postcode> <!--Optional:--> <cha:<CountryCode>AU</CountryCode> </AddressLocation> <ContactName>Peter <!--Optional:-->Test</ContactName> <cha:LocationID>?</cha:LocationID><Email>test@email.com</Email> <Line1>113 <!--Optional:-->Rooks Rd</Line1> <LocationDetails> <cha:Locality>?</cha:Locality> <!--Optional:--><Locality>Nunawading</Locality> <cha:State>?</cha:<State>VIC</State> <!--Optional:--><Postcode>3131</Postcode> <cha:Postcode>?</cha:Postcode><CountryCode>AU</CountryCode> <!--Optional:--></LocationDetails> <Name>Steve</Name> <cha:CountryCode>?</cha:CountryCode> <Phone>0425814806</Phone> <!--Optional:--> <State>VIC</State> <cha:SuburbStatePostcode>?</cha:SuburbStatePostcode> <Suburb>Nunawading</Suburb> </cha:AddressLocation> </Receiver> <!--Optional:--> <Reference>PO123456</Reference> <cha:ContactName>?</cha:ContactName> <Released>2019-10-19</Released> <!--Optional:--><Sender> <cha:Email>?<AccountID>{{AccountID}}</cha:Email>AccountID> <!--Optional:--><AddressLocation> <cha:Exception> <Locality>Nunawading</Locality> <!--Optional:--> <State>VIC</State> <cha:Message>?</cha:Message> <Postcode>3131</Postcode> <!--Optional:--> <CountryCode>AU</CountryCode> <cha:ModuleName>?</cha:ModuleName>AddressLocation> <ContactName>Peter <!--Optional:-->& O"'"Connor</ContactName> <Email>test@email.com</Email> <cha:ProcedureName>?</cha:ProcedureName> <Line1>113 Rooks </cha:Exception>Rd</Line1> <LocationDetails> <!--Optional:--> <cha:Fax>?</cha:Fax><Locality>Nunawading</Locality> <!--Optional:--> <State>VIC</State> <cha:Line1>?</cha:Line1> <Postcode>3131</Postcode> <!--Optional:--> <CountryCode>AU</CountryCode> <cha:Line2>?</cha:Line2> </LocationDetails> <!--Optional:--> <Name>Steven Reynolds</Name> <cha:Line3>?</cha:Line3> <Phone>0425814806</Phone> <!--Optional:--> <State>VIC</State> <cha:LocationDetails> <Suburb>Nunawading</Suburb> <!--Optional:-->/Sender> <Service>IPECL</Service> <cha:LocationID>?</cha:LocationID> <SpecialInstructions/> <!--Optional:--> </consignment> <cha:Locality>?</cha:Locality>SaveConsignment> </soapenv:Body> </soapenv:Envelope> |
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <!--Optional:--<SaveConsignmentResponse xmlns="http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices"> <cha:State>?</cha:State><SaveConsignmentResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <AccountID>116911</AccountID> <!--Optional:--> <AllowConsolidation>true</AllowConsolidation> <cha:Postcode>?</cha:Postcode> <CloseAt>16:08</CloseAt> <!--Optional:--> <ConsignmentDate>2018-08-02</ConsignmentDate> <cha:CountryCode>?</cha:CountryCode> <ConsignmentID>108802051</ConsignmentID> <!--Optional:--> <ConsignmentItems> <cha:SuburbStatePostcode>?</cha:SuburbStatePostcode> <ConsignmentItem> </cha:LocationDetails> <!--Optional:--> <Barcode>TSTZ00000015EXP00001</Barcode> <cha:LocationID>?</cha:LocationID> <ConsignmentID>108802051</ConsignmentID> <!--Optional:--> <cha:ModifiedBy>?</cha:ModifiedBy> <ConsignmentProduct> <!--Optional:--> <cha:Name>?</cha:Name><AccountID>0</AccountID> <!--Optional:--> <Code/> <cha:Phone>?</cha:Phone> <!--Optional:--> <DangerousGoods i:nil="true"/> <cha:State>?</cha:State> <!--Optional:--> <DangerousGoodsID>0</DangerousGoodsID> <cha:Suburb>?</cha:Suburb> </cha:Receiver> <Error i:nil="true"/> <!--Optional:--> <cha:Reference>?</cha:Reference> <Height>0</Height> <!--Optional:--> <cha:References> <IsActive>true</IsActive> <!--Zero or more repetitions:--> <cha:Reference> <Length>0</Length> <!--Optional:--> <Name/> <cha:ConsignmentReference>?</cha:ConsignmentReference> <!--Optional:--> <ProductID>0</ProductID> <cha:RemoveReference>?</cha:RemoveReference> </cha:Reference><Volume>0</Volume> </cha:References> <!--Optional:--> <Weight>0</Weight> <cha:Released>?</cha:Released> <!--Optional:--> <Width>0</Width> <cha:Sender> <!--Optional:-->/ConsignmentProduct> <cha:AccountID>?</cha:AccountID> <Description>SMALL CARTON</Description> <!--Optional:--> <cha:AddressID>?</cha:AddressID><ExchangeReturnable>false</ExchangeReturnable> <!--Optional:--> <Height>16</Height> <cha:AddressLocation> <ItemNo>1</ItemNo> <!--Optional:--> <cha:LocationID>?</cha:LocationID><ItemType/> <!--Optional:--><Length>38</Length> <cha:Locality>?</cha:Locality> <ModifiedBy>0</ModifiedBy> <!--Optional:--> <NoItems>1</NoItems> <cha:State>?</cha:State> <!--Optional:--><ProductID>0</ProductID> <cha:Postcode>?</cha:Postcode> <Reference>PO123456</Reference> <!--Optional:--> <Returnable/> <cha:CountryCode>?</cha:CountryCode> <Volume>0.015</Volume> <!--Optional:--> <cha:SuburbStatePostcode>?</cha:SuburbStatePostcode> <Weight>5</Weight> </cha:AddressLocation> <Width>25</Width> <!--Optional:--> <cha:ContactName>?</cha:ContactName>ConsignmentItem> <!--Optional:-->/ConsignmentItems> <cha:Email>?</cha:Email><ConsignmentNote>TSTZ00000015</ConsignmentNote> <!--Optional:--><ConsignmentType/> <ConsolidatedSus> <cha:Exception> <ConsolidateConsignment> <!--Optional:--> <cha:Message>?</cha:Message><Height>16</Height> <!--Optional:--> <ItemType/> <cha:ModuleName>?</cha:ModuleName> <Items>1</Items> <!--Optional:--> <cha:ProcedureName>?</cha:ProcedureName><Length>38</Length> </cha:Exception> <Volume>0.015</Volume> <!--Optional:--> <cha:Fax>?</cha:Fax> <Weight>5</Weight> <!--Optional:--> <Width>25</Width> <cha:Line1>?</cha:Line1> <!--Optional:-->/ConsolidateConsignment> <cha:Line2>?</cha:Line2>ConsolidatedSus> <ContainingConsignment>0</ContainingConsignment> <!--Optional:--> <DeliveryInstructions>Deliver to <cha:Line3>?</cha:Line3>Front Door.</DeliveryInstructions> <!--Optional:--<Description/> <cha:LocationDetails> <DistributorID>101605</DistributorID> <!--Optional:--><DownloadID>0</DownloadID> <Exception <cha:LocationID>?</cha:LocationID>i:nil="true"/> <Ext> <!--Optional:--> <cha:Locality>?</cha:Locality><ConsignmentID>0</ConsignmentID> <!--Optional:--><CostCenter/> <cha:State>?</cha:State><ThirdPartyAccount/> <!--Optional:--<UserField1/> <cha:Postcode>?</cha:Postcode> <UserField2/> <!--Optional:--<UserField3/> <cha:CountryCode>?</cha:CountryCode> <UserField4/> <!--Optional:--> <UserField5/> <cha:SuburbStatePostcode>?</cha:SuburbStatePostcode>Ext> </cha:LocationDetails><ExtraInfo/> <!--Optional:--><Hours>0</Hours> <cha:LocationID>?</cha:LocationID><ModifiedBy>0</ModifiedBy> <!--Optional:--><NoItems>1</NoItems> <cha:ModifiedBy>?</cha:ModifiedBy><OnForwarder>106008</OnForwarder> <!--Optional:--<PickupInstructions/> <cha:Name>?</cha:Name> <ReadyAt>14:00</ReadyAt> <Receiver> <!--Optional:--> <cha:Phone>?</cha:Phone><ATL>false</ATL> <!--Optional:--> <AccountID>116911</AccountID> <cha:State>?</cha:State> <AddressID>11400000</AddressID> <!--Optional:--> <AddressLocation> <cha:Suburb>?</cha:Suburb> </cha:Sender> <LocationID>8017</LocationID> <!--Optional:--> <cha:Service>?</cha:Service> <Locality>HALLAM</Locality> <!--Optional:--> <cha:SessionID>?</cha:SessionID> <State>VIC</State> <!--Optional:--> <cha:SpecialInstructions>?</cha:SpecialInstructions> <Postcode>3803</Postcode> <!--Optional:--> <cha:Volume>?</cha:Volume> <CountryCode>AU</CountryCode> <!--Optional:--> <cha:Weight>?</cha:Weight> <SuburbStatePostcode>HALLAM VIC 3803</SuburbStatePostcode> </cha:consignment> </cha:SaveConsignment> </soapenv:Body> </soapenv:Envelope> | ||||||||||||
Code Block | ||||||||||||
| ||||||||||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body></AddressLocation> <GetChargeQuote5Response xmlns="http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices"> <GetChargeQuote4Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <ContactName/> <ServicePricing> <DefaultCarrierAccount i:nil="true"/> <CalculatedSUType>UnDefined</CalculatedSUType> <Email>hallam@company.com.au</Email> <CarrierID>101956</CarrierID> <Exception i:nil="true"/> <CarrierName>TOLL IPEC PTY LTD</CarrierName> <CarrierService>L<<Fax/CarrierService>> <ETA>16/08/2018</ETA> <Line1>89 Wellington Street</Line1> <FeesCharge>237.1800</FeesCharge> <Line2/> <FreightCharge>1652.8100</FreightCharge> <ID>0<<Line3/ID>> <NetCharge>1889.9900</NetCharge> <LocationDetails> <RateID>9607039</RateID> <LocationID>8017</LocationID> <ServiceName>IPEC Local</ServiceName> <ShipperService>IPECL</ShipperService> <Locality>HALLAM</Locality> <TaxCharge>189.0000</TaxCharge> <TotalCharge>2078.9900</TotalCharge><State>VIC</State> <WebDescription>Toll Ipec Local</WebDescription> <Postcode>3803</Postcode> <ZoneFrom>MEL1</ZoneFrom> <ZoneTo>IVIC<<CountryCode>AU</ZoneTo>CountryCode> </ServicePricing> <SuburbStatePostcode>HALLAM <ServicePricing> VIC 3803</SuburbStatePostcode> <CalculatedSUType>UnDefined</CalculatedSUType> </LocationDetails> <CarrierID>101956</CarrierID> <LocationID>8017</LocationID> <CarrierName>TOLL IPEC PTY LTD</CarrierName> <CarrierService>X</CarrierService> <ModifiedBy>0</ModifiedBy> <ETA>16/08/2018</ETA> <Name>CUSTOMER F</Name> <FeesCharge>261.2700</FeesCharge> <Phone>03 6334 <FreightCharge>1820.6700</FreightCharge>1000</Phone> <ID>0</ID> <State>VIC</State> <NetCharge>2081.9400</NetCharge> <Suburb>HALLAM</Suburb> <RateID>9607176</RateID> </Receiver> <ServiceName>IPEC Road Express</ServiceName> <Reference>PO123456</Reference> <ShipperService>IPECX</ShipperService> <References> <TaxCharge>208.2000</TaxCharge> <TotalCharge>2290.1400</TotalCharge> <Reference> <WebDescription>Toll Ipec Road Express</WebDescription> <ConsignmentReference>PO123456</ConsignmentReference> <ZoneFrom>MEL1</ZoneFrom> <ZoneTo>IVIC<<RemoveReference>false</ZoneTo>RemoveReference> </ServicePricing> </Reference> <ServicePricing> </References> <CalculatedSUType>UnDefined</CalculatedSUType> <Released>2019-08-01</Released> <CarrierID>102958</CarrierID> <Sender> <CarrierName>Hi-Trans Express Pty Ltd</CarrierName> <CarrierService>G</CarrierService><ATL>false</ATL> <ETA/> <AccountID>116911</AccountID> <FeesCharge>327.8300</FeesCharge> <AddressID>11399996</AddressID> <FreightCharge>1927.2900</FreightCharge> <AddressLocation> <ID>0</ID> <NetCharge>2255.1200</NetCharge> <LocationID>5836</LocationID> <RateID>10702459</RateID> <Locality>SCORESBY</Locality> <ServiceName>Hi Trans General Service</ServiceName> <ShipperService>HITRANG</ShipperService> <State>VIC</State> <TaxCharge>225.5100</TaxCharge> <Postcode>3179</Postcode> <TotalCharge>2480.6300</TotalCharge> <WebDescription>Hi-Trans General</WebDescription> <CountryCode>AU</CountryCode> <ZoneFrom>MEL</ZoneFrom> <SuburbStatePostcode>SCORESBY VIC <ZoneTo>VC1I<3179</ZoneTo>SuburbStatePostcode> </ServicePricing> </AddressLocation> <ServicePricing> <CalculatedSUType>UnDefined<<ContactName/CalculatedSUType>> <CarrierID>102958</CarrierID> <DefaultCarrierAccount i:nil="true"/> <CarrierName>Hi-Trans Express Pty Ltd</CarrierName> <Email/> <CarrierService>X</CarrierService> <Exception i:nil="true"/> <ETA/> <FeesCharge>392.8600</FeesCharge> <Fax/> <FreightCharge>2309.5900</FreightCharge> <Line1>7 Lakeview Drive</Line1> <ID>0</ID> <NetCharge>2702.4500</NetCharge><Line2/> <RateID>10702460</RateID> <Line3/> <ServiceName>Hi-Trans Express Service</ServiceName> <LocationDetails> <ShipperService>HITRANX</ShipperService> <TaxCharge>270.2500<<LocationID>5836</TaxCharge>LocationID> <TotalCharge>2972.7000</TotalCharge> <Locality>SCORESBY</Locality> <WebDescription>Hi Trans Express</WebDescription> <ZoneFrom>MEL<<State>VIC</ZoneFrom>State> <ZoneTo>VC1I</ZoneTo> <Postcode>3179</Postcode> </ServicePricing> <ServicePricing> <CountryCode>AU</CountryCode> <CalculatedSUType>UnDefined</CalculatedSUType> <CarrierID>101956</CarrierID> <SuburbStatePostcode>SCORESBY VIC 3179</SuburbStatePostcode> <CarrierName>TOLL IPEC PTY LTD</CarrierName> </LocationDetails> <CarrierService>H</CarrierService> <LocationID>5836</LocationID> <ETA>16/08/2018</ETA> <FeesCharge>766.2200<<ModifiedBy>0</FeesCharge>ModifiedBy> <FreightCharge>4895.9800</FreightCharge> <Name>SENDER ENTITY</Name> <ID>0</ID> <Phone/> <NetCharge>5662.2000</NetCharge> <RateID>9606992</RateID><State>VIC</State> <ServiceName>IPEC Priority<<Suburb>SCORESBY</ServiceName>Suburb> <ShipperService>IPECH<</ShipperService>Sender> <TaxCharge>566.2200</TaxCharge><Service>STEEXP</Service> <TotalCharge>6228.4200<<SessionID>0</TotalCharge>SessionID> <WebDescription>Toll Ipec Priority</WebDescription><SpecialInstructions/> <ZoneFrom>MEL1</ZoneFrom><Volume>0.015</Volume> <ZoneTo>IVIC<<Weight>5</ZoneTo>Weight> </ServicePricing> SaveConsignmentResult> </GetChargeQuote4Result> </GetChargeQuote5Response>SaveConsignmentResponse> </s:Body> </s:Envelope> |
...
Related articles
Filter by label (Content by label) | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...