Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  1. The customers system generates a file with the consignment information. 
    The file must:
    1. CSV/XML Format
    2. Contain the order file Information documented
    3. Limit to one Order/Consignment per file

  2. EFM Installs a Windows Service on the Customer's Server to pick up this File and send it to our Message Transmitter Service which transforms this File into a standard Message that OneFlo can interpret.

  3. Customer uses OneFlo Portal to "Look up" the consignment that can now be found within the system.




Performing Order Lookup

System Component Map

Warning
titleWARNING

Custom Services are only available upon evaluation and require internal approval before moving forward.

Information Requirements

Order Detail Information

Field No.

Field Name

Type

Length

Mandatory

Multiplicity

Description

1OrderReferenceNumberText/Numeric30Mandatory1Must be Unique2Additional ReferenceReferences30Optional0*3ServiceText20Optional0-1Preferred service following the Service Code provided by EFM. Must comply with the code otherwise will be ignored.4SenderAddressOptional0-1Only used when creating return or third party orders when a sender needs to be specified.5

Receiver

Address

Mandatory

16ItemsItemRecommended0-1*7Authority to LeaveBoolean5Mandatorytrue/false/blank8

Delivery Instructions

Text

60

Recommended

19

Special Instructions

Text

60

Recommended

110UserField1Text30OptionalCustom fields configured in OneFlo. Defined in https://portal.oneflo.com.au/MyUserFields/Index11UserField2Text30OptionalCustom fields configured in OneFlo. Defined in https://portal.oneflo.com.au/MyUserFields/Index12UserField3Text30OptionalCustom fields configured in OneFlo. Defined in https://portal.oneflo.com.au/MyUserFields/Index13UserField4Text30OptionalCustom fields configured in OneFlo. Defined in https://portal.oneflo.com.au/MyUserFields/Index14UserField5Text30OptionalCustom fields configured in OneFlo. Defined in https://portal.oneflo.com.au/MyUserFields/Index AnchorAddressTypeAddressTypeAddress Type InformationField No.

Field Name

Type

Length

Mandatory

Multiplicity

Description

1NameText30Mandatory12Address1Text30Mandatory13Address2Text30Optional14LocalityText30Mandatory15StateText5Mandatory16PostcodeText5Mandatory17ContactNameText20Optional0-18ContactPhoneText15Optional0-19ContactEmailText50Recommended0-1 AnchorItemTypeItemTypeItem Type InformationField No.

Field Name

Type

Length

Mandatory

Multiplicity

Description

1ReferenceText30Recommended12CodeText30Recommended1Defined: https://portal.oneflo.com.au/MyProducts/Index3DescriptionText30Recommended1Description of the package4ItemsNumericRecommended1number of items of this type / dims / weight5LengthNumericRecommended1in centimetres, must be whole number6WidthNumericRecommended1in centimetres, must be whole number7HeightNumericRecommended1in centimetres, must be whole number8WeightNumericRecommended1in kilograms, can include decimal9VolumeNumericOptional1in cubic metres, can include decimal

Example Files

XML

Code Block
languagexml
themeRDark
titleOrderXML
<OrderData xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <OrderDetail> <OrderReference>3081973</OrderReference> <Service>IPECX</Service> <References> <Reference>ExtraReference</Reference> </References> <Receiver> <Name>Receiver Name</Name> <Address1>89 Koala St</Address1> <Locality>Footscray</Locality> <State>VIC</State> <Postcode>3011</Postcode> <ContactName>Receiver Contact</ContactName> <ContactPhone>+6134567890</ContactPhone> </Receiver> <Items> <Code>CA25SP</Code> <Length>0.280</Length> <Width>0.280</Width> <Height>0.090</Height> <Weight>1.544</Weight> <Description>Box of Nails</Description> </Items> </OrderDetail> </OrderData>