Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

This page includes a list and definition of Complex Types used in the SOAP API environment of OneFlo. These complex types are used as

Status
colourGreen
titleinput
to the Web Service calls to OneFlo in order to elicit a response. The
Status
colourBlue
titleresponse
may also be a complex type, especially when the expected response is an object with multiple attributes.

...


...

Guide:

MandatoryDetermine if the element is required when using this ComplexType.
Status
colourRed
titleM
Element must be declared.
Status
titleO
Element may be omitted.
DirectionDetermine when the element is used.
Status
colourGreen
titleBOTH
Provided as both input
/
and response from the Web Service
Status
colourBlue
titleOUTPUT
Only provided as a response from Web Service
Useful forCreating and releasing consignmentsUsed inSaveConsignment

...




...

Anchor
complextype_consignment
complextype_consignment
Consignment


Type
Status
colourGreen
titleinput
/
Status
colourBlue
titleresponse
Useful forCreating and releasing consignments
Used inSaveConsignment


The Consignment object represents the data of the freight that is created in OneFlo. It contains information regarding the freight's account owner, distributor, sender, receiver, instructions, and line item details including whether the freight contains DG or not and other relevant information.

XSD

Code Block
languagexml
themeRDark
titleConsignment
<xs:complexType name="Consignment">
	<xs:sequence>
		<xs:element minOccurs="0" name="AccountID" type="xs:int"/>
		<xs:element minOccurs="0" name="AllowConsolidation" type="xs:boolean"/>
		<xs:element minOccurs="0" name="CloseAt" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ConsignmentDate" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ConsignmentID" type="xs:long"/>
		<xs:element minOccurs="0" name="ConsignmentItems" nillable="true" type="tns:ArrayOfConsignmentItem"/>
		<xs:element minOccurs="0" name="ConsignmentNote" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ConsignmentType" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ConsolidatedSus" nillable="true" type="tns:ArrayOfConsolidateConsignment"/>
		<xs:element minOccurs="0" name="ContainingConsignment" type="xs:long"/>
		<xs:element minOccurs="0" name="DeliveryInstructions" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Description" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="DistributorID" type="xs:int"/>
		<xs:element minOccurs="0" name="DownloadID" type="xs:int"/>
		<xs:element minOccurs="0" name="Exception" nillable="true" type="tns:SaveException"/>
		<xs:element minOccurs="0" name="Ext" nillable="true" type="tns:ConsignmentExt"/>
		<xs:element minOccurs="0" name="ExtraInfo" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Hours" type="xs:float"/>
		<xs:element minOccurs="0" name="ModifiedBy" type="xs:int"/>
		<xs:element minOccurs="0" name="NoItems" type="xs:short"/>
		<xs:element minOccurs="0" name="OnForwarder" type="xs:int"/>
		<xs:element minOccurs="0" name="PickupInstructions" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ReadyAt" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Receiver" nillable="true" type="tns:Address"/>
		<xs:element minOccurs="0" name="Reference" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="References" nillable="true" type="tns:ArrayOfReference"/>
		<xs:element minOccurs="0" name="Released" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Sender" nillable="true" type="tns:Address"/>
		<xs:element minOccurs="0" name="Service" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="SessionID" type="xs:long"/>
		<xs:element minOccurs="0" name="SpecialInstructions" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Volume" type="xs:float"/>
		<xs:element minOccurs="0" name="Weight" type="xs:float"/>
	</xs:sequence>
</xs:complexType>
<xs:element name="Consignment" nillable="true" type="tns:Consignment"/>

Elements

ElementTypeMandatory / OptionalLengthDirectionComments
AccountIDint
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
AccountID retrieved from Session.
AllowConsolidationbool
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH

true/false : Indicates whether a consignment can be consolidated.

If it's the first consignment for the day going to a receiver and service, a new consignment will be created. Succeeding consignments going to the same receiver and same service, the new items in this consignment will be appended to the previous consignment (that allows consolidation) and using the same connote number. This doesn't apply to consignments with Dangerous Goods.

CloseAtTime
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH

hh:mm

Time when the facilities will close (for pickup). Will be reflected on the Pickup Request and consignment data sent to carrier.

ConsignmentDateDateTime
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Date of the creation of the consignment.






ConsignmentIDlong
Status
titleO
-
Status
colourGreen
titleBOTH

ID of the record in the OneFlo database.

Not required on creation.

When updating an existing consignment, provide the ConsignmentID.

ConsignmentItemsConsignmentItem[]
Status
colourRed
titleM
1...n
Status
colourGreen
titleBOTH
Details the items included in the consignment.
ConsignmentNotestring
Status
titleO
20
Status
colourGreen
titleBOTH

When provided, the consignment will be created with the provided Connote number.

When not provided, OneFlo will generate a new connote number from the range.

ConsignmentTypestring
Status
titleO
-
Status
colour
BlueNot recommended for use
Green
title
OUTPUT
BOTH

Indicates the consignment movement:

Populate with "Pickup" for Outbound; "Return" for returns; and, "Transfer" for transfers.

ConsolidatedSusConsolidateConsignment[]
Status
titleO
-
Status
colourBlue
titleOUTPUT
Not recommended for use.
ContainingConsignmentlong
Status
titleO
-
Status
colourBlue
titleOUTPUT
Not recommended for use.
DeliveryInstructionsstring
Status
titleO
80
Status
colourGreen
titleBOTH
Delivery Instructions. Will appear on labels (depending on carrier specification may be limited in terms of number of characters due to real estate).
Descriptionstring
Status
titleO
30
Status
colourGreen
titleBOTH
Description of Consignment. Won't appear on labels.
DistributorIDint
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
DistributorID retrieved from Session.
DownloadIDint
Status
titleO
-
Status
colourBlue
titleOUTPUT
Not recommended for use.
ExceptionSaveException
Status
titleO
-
Status
colourBlue
titleOUTPUT
Output. Provides detail on the result if there is an error with the data provided.
ExtConsignmentsExt
Status
titleO
0...1
Status
colourGreen
titleBOTH
Additional information for a consignment.
ExtraInfostring
Status
titleO
-
Status
colourBlue
titleOUTPUT
Not recommended for use.
Hoursfloat
Status
titleO
-
Status
colourGreen
titleBOTH
Default 0.
ModifiedByint
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
UserID as defined in the session.
NoItemsshort
Status
titleO
-
Status
colourBlue
titleOUTPUT
Item Count Summary for the consignment. Computed from the data provided in ConsignmentItems. 
OnForwarderint
Status
titleO
-
Status
colourGreen
titleBOTH
Not required when Service is provided.
PickupInstructionsstring
Status
titleO
80
Status
colourGreen
titleBOTH
Pickup Instructions. Will appear on Pickup request data when carrier is configured.
ReadyAt

Time

Status
colourRed
titleM
-
Status
colourGreen
titleBOTH

hh:mm

Time when the consignment is ready to be picked up. Will be reflected on Pickup Request and cosignment data sent to carrier.

ReceiverAddress
Status
colourRed
titleM
1
Status
colourGreen
titleBOTH
Details of the receiver of the freight.
Referencestring
Status
titleO
20
Status
colourGreen
titleBOTH
Stores the primary business reference (i.e. Sales Order Number, Pick Number, etc)
ReferencesReference[]
Status
titleO
0...n
Status
colourGreen
titleBOTH
Additional References.
ReleasedDateTime
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Date of the release of the consignment, must be provided but will be updated by the system when the consignment is actually released via the Release*Consignment API.
SenderAddress
Status
colourRed
titleM
1
Status
colourGreen
titleBOTH
Details of the sender of the freight.
Servicestring
Status
colourRed
titleM
10
Status
colourGreen
titleBOTH
Service for use. Must be a service defined in OneFlo as retrieved from the ShipperService Element of the ServicePricing.
SessionIDlong
Status
titleO
-
Status
colourBlue
titleOUTPUT
Not recommended for use.
SpecialInstructionsstring
Status
titleO
80
Status
colourGreen
titleBOTH
Additional Instructions. Will appear on labels (depending on carrier specification may be limited in terms of number of characters due to real estate).
Volumefloat
Status
titleO
-
Status
colourBlue
titleOUTPUT
Total Consignment Volume in cubic metres. Computed from the data provided in ConsignmentItems.
Weightfloat
Status
titleO
-
Status
colourBlue
titleOUTPUT
Total Consignment weight in kilograms. Computed from the data provided in ConsignmentItems.

Legend:

...


...

Status
colourRed
titleM

...

Status
titleO

...

Status
colourBlue
titleOUTPUT

...

Example

...

languagexml
themeRDark
linenumberstrue

...

Example

Code Block
languagexml
themeRDark
linenumberstrue
<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>
			<session>
				<AccountID>{{AccountID}}</AccountID>
				<DistributorID>{{DistributorID}}</DistributorID>
				<Expires>{{Expires}}</Expires>
				<Key>{{Key}}</Key>
				<UserID>{{UserID}}</UserID>
			</session>
			<consignment>
				<AccountID>{{AccountID}}</AccountID>
				<AllowConsolidation>true</AllowConsolidation>
				<CloseAt>16:00</CloseAt>
				<ConsignmentDate>2018-08-02 10:09:00</ConsignmentDate>
				<ConsignmentItems>
					<ConsignmentItem>
						<Description>SMALL CARTON NO DG</Description>
						<Height>16</Height>           
						<ItemNo>1</ItemNo>             
						<Length>38</Length>
						<NoItems>1</NoItems>
						<Reference />
						<Weight>5</Weight>
						<Width>25</Width>
					</ConsignmentItem>
					<ConsignmentItem>
						<ConsignmentProduct>
							<Cubic>0.0152</Cubic>
							<DangerousGoods>
								<AggQty>4</AggQty>
								<Class>2.1</Class>
								<Group>NONE</Group>
								<Name>AEROSOLS</Name>
								<PSN>AEROSOLS IN A CAN</PSN>
								<Qty>1</Qty>
								<Receptacle>CAN</Receptacle>
								<SubRisk>N/A</SubRisk>
								<UnCode>1950</UnCode>
								<Units>kg</Units>
							</DangerousGoods>
						</ConsignmentProduct>
						<Description>SMALL CARTON WITH DG</Description>
						<Height>16</Height>           
						<ItemNo>1</ItemNo>             
						<Length>38</Length>
						<NoItems>1</NoItems>
						<PackagingType>SAT</PackagingType>
						<Reference />
						<Weight>5</Weight>
						<Width>20</Width>
					</ConsignmentItem>

				</ConsignmentItems>
				<DeliveryInstructions>Deliver to Front Door.</DeliveryInstructions>
				<Description />
				<DistributorID>{{DistributorID}}</DistributorID>
				<ReadyAt>14:00</ReadyAt>
				<Receiver>
					<AddressLocation>
						<CountryCode>AU</CountryCode>
						<SuburbStatePostcode>HALLAM VIC 3803</SuburbStatePostcode>
					</AddressLocation>
					<ATL>true</ATL>
					<Contact>CONTACT PERSON</Contact>
					<Country>AUSTRALIA</Country>
					<CountryCode>AU</CountryCode>
					<Email>hallam@company.com.au</Email>
					<Line1>89 Wellington Street</Line1>
					<Line2 />
					<Line3 />
					<Name>CUSTOMER ABC</Name>
					<Phone>03 1234 1000</Phone>
				</Receiver>
				<Reference>PO123456</Reference>
				<Released>2019-08-01T00:00:00</Released>
				<Sender>
					<AddressLocation>
						<CountryCode>AU</CountryCode>
						<SuburbStatePostcode>SCORESBY VIC 3179</SuburbStatePostcode>
					</AddressLocation>
					<Country>AUSTRALIA</Country>
					<CountryCode>AU</CountryCode>
					<Line1>7 Lakeview Drive</Line1>
					<Line2 />
					<Line3 />
					<Name>SENDER ENTITY</Name>
					<Phone />
				</Sender>
				<Service>STEEXP</Service>
							<SpecialInstructions/>
			</consignment>
		</SaveConsignment>
	</soapenv:Body>
</soapenv:Envelope>

...

<SpecialInstructions/>
			</consignment>
		</SaveConsignment>
	</soapenv:Body>
</soapenv:Envelope>


...

Anchor
consignmentitems
consignmentitems
 Consignment Item


Type
Status
colourGreen
titleinput
/
Status
colourBlue
titleresponse
Useful forCreating and releasing consignment items within consignments
Used inSaveConsignment / GetChargeQuote


The Consignment Item otherwise known as a shipping unit / item is an object represents the data of the freight items created within a Consignment object that is created in OneFlo. A consignment must contain at least one consignment item. This is the actual object that will be labeled and will travel with the carrier. Each object defines what gets printed in the label.

XSD

Code Block
languagexml
themeRDark
titleConsignment
<xs:complexType name="ConsignmentItem">
	<xs:sequence>
		<xs:element minOccurs="0" name="Barcode" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ConsignmentID" type="xs:long"/>
		<xs:element minOccurs="0" name="ConsignmentProduct" nillable="true" type="tns:Product"/>
		<xs:element minOccurs="0" name="Description" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ExchangeReturnable" type="xs:boolean"/>
		<xs:element minOccurs="0" name="Height" type="xs:float"/>
		<xs:element minOccurs="0" name="ItemNo" type="xs:int"/>
		<xs:element minOccurs="0" name="ItemType" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Length" type="xs:float"/>
		<xs:element minOccurs="0" name="ModifiedBy" type="xs:int"/>
		<xs:element minOccurs="0" name="NoItems" type="xs:int"/>
		<xs:element minOccurs="0" name="PackagingType" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Palletised" type="xs:boolean"/>
		<xs:element minOccurs="0" name="ProductID" type="xs:int"/>
		<xs:element minOccurs="0" name="Reference" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Returnable" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Volume" type="xs:float"/>
		<xs:element minOccurs="0" name="Weight" type="xs:float"/>
		<xs:element minOccurs="0" name="Width" type="xs:float"/>
	</xs:sequence>
</xs:complexType>
<xs:element name="ConsignmentItem" nillable="true" type="tns:ConsignmentItem"/>

Elements

ElementTypeMandatory / OptionalLengthDirectionComments
Barcodestring
Status
titleO
-
Status
colourGreen
titleBOTH
This is the SSCC barcode. If no SSCC is provided, OneFlo will generate a barcode for you.
ConsignmentIDlong
Status
titleO
-
Status
colourGreen
titleBOTH

ID of the record in the OneFlo database.

Not required on creation.

When updating an existing consignment, provide the ConsignmentID.

ConsignmentProductProduct
Status
titleO
-
Status
colourGreen
titleBOTH

This is a complex type for the definition of Dangerous Goods.

Descriptionstring
Status
titleO
40
Status
colourGreen
titleBOTH
A description of the goods being shipped.
ExchangeReturnableboolean
Status
titleO
-
Status
colourBlue
titleOUTPUT

Heightfloat
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH

Height of item in centimetres (cm).

ItemNoint
Status
titleO
-
Status
colourGreen
titleBOTH

The index (starting 1) or otherwise known as ordinal integer. It's not mandatory to provide this because OneFlo will assign it upon saving.

e.g. if there are 3 packages, this will enumerate package 1, package 2, and package 3

ItemTypestring
Status
colourRed
titleM
20
Status
colourGreen
titleBOTH

Item Code - could be your warehouse Shipping Unit code (i.e. Carton_12X or CHEP_Pallet)

Lengthfloat
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Length of item in centimetres (cm).
ModifiedByint
Status
titleO
-
Status
colourBlue
titleOUTPUT

NoItemsint
Status
colourRed
titleM
1
Status
colourGreen
titleBOTH

Because the representation of each item must be declared in a ConsignmentItem element, this field must always have the value of '1'.

Multiple items of the same type must be declared in separate ConsignmentItem elements.

PackagingTypestring
Status
colourRed
titleM
20
Status
colourGreen
titleBOTH
Should be one of the available packaging types in OneFlo. Shipping Items - Packaging Type.
Palletisedboolean
Status
titleO
-
Status
colourGreen
titleBOTH
Non-mandatory, please see Packaging Type.
ProductIDint
Status
titleO
-
Status
colourGreen
titleBOTH

Referencestring
Status
titleO
20
Status
colourGreen
titleBOTH
Item Reference associated to the order. This is useful for consolidated items where items need to be identified into which particular order it's under. This can also be used to indicate specifically which references are associated to the shipping unit.
Returnablestring
Status
titleO
20
Status
colourGreen
titleBOTH

Volumefloat
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Cubic metres (m3). Up to 3 decimal places.
Weightfloat
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Weight of the item in kilograms (kg).
Widthfloat
Status
colourRed
titleM
-
Status
colourGreen
titleBOTH
Width of item in centimetres (cm).



...

Anchor
cp_address
cp_address
Address


Type
Status
colourGreen
titleinput
/
Status
colourBlue
titleresponse
Useful forCreating and releasing consignments
Used inSaveConsignment


The address field defines the structure of the address entity in the OneFlo database. This address entity is used as components of the Consignment element via its Sender and Receiver elements.

XSD

Code Block
languagexml
themeRDark
<xs:complexType name="Address">
	<xs:sequence>https://www.youtube.com/watch?v=bbStdHPMMf4name="Address">
	<xs:sequence>
		<xs:element minOccurs="0" name="AccountID" type="xs:int"/>
		<xs:element minOccurs="0" name="AddressID" type="xs:int"/>
		<xs:element minOccurs="0" name="AddressLocation" nillable="true" type="tns:Location"/>
		<xs:element minOccurs="0" name="ATL" type="xs:boolean"/>
		<xs:element minOccurs="0" name="ContactName" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Email" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Exception" nillable="true" type="tns:SaveException"/>
		<xs:element minOccurs="0" name="Fax" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Line1" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Line2" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Line3" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="LocationDetails" nillable="true" type="tns:Location"/>
		<xs:element minOccurs="0" name="LocationID" type="xs:int"/>
		<xs:element minOccurs="0" name="ModifiedBy" type="xs:int"/>
		<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Phone" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="State" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="Suburb" nillable="true" type="xs:string"/>
	</xs:sequence>
</xs:complexType>
<xs:element name="Address" nillable="true" type="tns:Address"/>

Elements

ElementTypeMandatory / OptionalLengthComments
AccountIDint
Status
colourRed
titleM
-Owner of this address entity in the OneFlo database.
AddressIDint
Status
titleO
-The record ID of this address entity.
ATLbool
Status
titleO
-1/0 : Indicates if the receiver allows ATL (Authority to Leave), when a carrier is allowed to leave the parcel/freight without signature.
Namestring
Status
colourRed
titleM
50Entity or Company name. Could be the name of the person receiving the freight.
Line1string
Status
colourRed
titleM
30First line of the address. Must be provided so it appears on the label + postback.
Line2string
Status
titleO
30Additional line, when required. Will appear on label + postback.
Line3string
Status
titleO
30Extra line. Most carrier labels don't render this.
LocationIDint
Status
colourRed
titleM
-

LocationID in the OneFlo database. LocationID can be retrieved from the ValidateLocation API.

BEST PRACTICE: If known and provided, no need to define the AddressLocation and LocationDetails of this Address and providing this is more accurate than using AddressLocation or LocationDetails

ContactNamestring
Status
colourRed
titleM
20Name of person / contact for this address entity. Will appear on label.
Phonestring
Status
titleO
15Phone number of contact. Will appear on Label.
Emailstring
Status
titleO
50Email address of contact. When populated in Consignment.Receiver, this will be used to deliver ASNs.
Faxstring
Status
titleO
15
AddressLocationLocation
Status
titleO
0...1No need to define this element if the LocationID or LocationDetails element is provided.
LocationDetailsLocation
Status
titleO
0...1No need to define this element if the LocationID or AddressLocation element is provided.
ModifiedByint
Status
colourRed
titleM
-UserID as defined in the session.
Statestring
Status
titleO
5Not recommended for use.
Suburbstring
Status
titleO
50Not recommended for use.
ExceptionSaveException
Status
titleO
-Output. Provides detail on the result if there is an error with the data provided.

Legend:

MandatoryDetermine if the element is required when using this ComplexType.
Status
colourRed
titleM
Element must be declared.
Status
titleO
Element may be omitted.
DirectionDetermine when the element is used.
Status
colourGreen
titleBOTH
Provided as both input and response from the Web Service
Status
colourBlue
titleOUTPUT
Only provided as a response from Web Service


...

ServicePricing

Type
Status
colourBlue
titleresponse
Only
Useful forConsignment Creation / Modification
Used inGetChargeQuote

Service pricing is the result of a quote request. This defines the available services given a quoted freight profile. Please refer to the GetChargeQuote* API calls

XSD

Code Block
languagexml
themeRDark
<xs:complexType name="ServicePricing">
	<xs:sequence>
		<xs:element minOccurs="0" name="CalculatedSUType" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="CarrierID" type="xs:int"/>
		<xs:element minOccurs="0" name="CarrierName" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="CarrierService" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ETA" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="FeesCharge" type="xs:decimal"/>
		<xs:element minOccurs="0" name="FreightCharge" type="xs:decimal"/>
		<xs:element minOccurs="0" name="ID" type="xs:int"/>
		<xs:element minOccurs="0" name="NetCharge" type="xs:decimal"/>
		<xs:element minOccurs="0" name="RateID" type="xs:int"/>
		<xs:element minOccurs="0" name="ServiceName" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ShipperService" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="TaxCharge" type="xs:decimal"/>
		<xs:element minOccurs="0" name="TotalCharge" type="xs:decimal"/>
		<xs:element minOccurs="0" name="WebDescription" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ZoneFrom" nillable="true" type="xs:string"/>
		<xs:element minOccurs="0" name="ZoneTo" nillable="true" type="xs:string"/>
	</xs:sequence>
</xs:complexType>
<xs:element name="ServicePricing" nillable="true" type="tns:ServicePricing"/>

Elements

ElementTypeMandatory / OptionalLengthComments
CalculatedSUTypestring--If the rate in the system is calculated against a Shipping Unit type, this is represented as a CalculatedSUType.
CarrierIDint--ID of the carrier in OneFlo.
CarrierNamestring--Full name of the carrier in OneFlo.
CarrierServicestring--Carrier side service
ETAstring--Estimated Delivery Date as provided by the carrier for the lane. OneFlo must have this information before it's provided.
FeesChargedecimal--Freight Fees
FreightChargedecimal--Freight charge
IDint--Not used.
NetChargedecimal--Net freight charge
RateIDint--OneFlo Rate ID
ServiceNamestirng--OneFlo full service name.
ShipperServicestring--OneFlo carrier service code. This is the code to be provided as a Service when creating/modifying the Consignment object.
TaxChargedecimal--GST
TotalChargedecimal--NetCharge + GST
WebDescriptionstring--OneFlo Service Description
ZoneFromstring--OneFlo carrier Zone source
ZoneTostring--OneFlo carrier Zone destination

Example

Code Block
languagexml
themeRDark
            <ServicePricing>
               <CalculatedSUType>FP</CalculatedSUType>
               <CarrierID>102958</CarrierID>
               <CarrierName>Hi-Trans Express Pty Ltd</CarrierName>
               <CarrierService>G</CarrierService>
               <ETA/>
               <FeesCharge>25.5400</FeesCharge>
               <FreightCharge>150.1600</FreightCharge>
               <ID>0</ID>
               <NetCharge>175.7000</NetCharge>
               <RateID>10702459</RateID>
               <ServiceName>Hi Trans General Service</ServiceName>
               <ShipperService>HITRANG</ShipperService>
               <TaxCharge>17.5700</TaxCharge>
               <TotalCharge>193.2700</TotalCharge>
               <WebDescription>Hi-Trans General</WebDescription>
               <ZoneFrom>MEL</ZoneFrom>
               <ZoneTo>NS6S</ZoneTo>
            </ServicePricing>

...