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.azurewebsitescom.net/Dataau/ChainIT/DataService.svc
This is not the production endpoint. The production endpoint will be provided once all requests have been validated to work correctly.
...
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> <session> <!--Mandatory:--> <session> <AccountID>{{AccountID}}</AccountID> <DistributorID>{{DistributorID}}</DistributorID> <Expires>{{Expires}}</Expires> <Key>{{Key}}</Key> <UserID>{{UserID}}</UserID> </session> <consignment> <!--Mandatory:--> <consignment> <AccountID>{{AccountID}}</AccountID> <AllowConsolidation>true</AllowConsolidation> <AllowConsolidation>true</AllowConsolidation> <CloseAt>16:00</CloseAt> <ConsignmentDate>2018-08-02 10:09:00</ConsignmentDate> <ConsignmentItems> <ConsignmentItem><!--Mandatory:--> <ConsignmentProduct><!--Mandatory:--> <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</Description> <Height>16</Height> <ConsignmentDate>2019-10-19</ConsignmentDate> <ConsignmentItems> <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</Description> <Height>16</Height> <ItemNo>1</ItemNo> <ItemType>SMALL CARTON</ItemType> <Length>38</Length> <NoItems>1</NoItems> <PackagingType>CTN</PackagingType> <!-- https://flipgroup.atlassian.net/wiki/spaces/OIUG/pages/961445944/Shipping+Items+-+Packaging+Type --> <Reference /> <Weight>5</Weight> <Width>25</Width> </ConsignmentItem> </ConsignmentItems> <DeliveryInstructions>Deliver to Front Door.</DeliveryInstructions> <Description /> <DistributorID>101605</DistributorID> <Ext> <UserField1>123456</UserField1> </Ext> <ReadyAt>14:00</ReadyAt> <Receiver> <AddressLocation> <Locality>Nunawading</Locality> <State>VIC</State> <Postcode>3131</Postcode> <CountryCode>AU</CountryCode> </AddressLocation> <ContactName>Peter Test</ContactName> <Email>test@email.com</Email> <Line1>113 Rooks Rd</Line1> <LocationDetails> <Locality>Nunawading</Locality> <State>VIC</State> <Postcode>3131</Postcode> <CountryCode>AU</CountryCode> </LocationDetails> <Name>Steve</Name> <Phone>0425814806</Phone> <State>VIC</State> <Suburb>Nunawading</Suburb> </Receiver> <Reference>PO123456</Reference> <Released>2019-10-19</Released> <Sender> <AccountID>{{AccountID}}</AccountID> <AddressLocation> <Locality>Nunawading</Locality> <State>VIC</State> <Postcode>3131</Postcode> <CountryCode>AU</CountryCode> </AddressLocation> <ContactName>Peter & O"'"Connor</ContactName> <Email>test@email.com</Email> <Line1>113 Rooks Rd</Line1> <LocationDetails> <Locality>Nunawading</Locality> <State>VIC</State> <Postcode>3131</Postcode> <CountryCode>AU</CountryCode> </LocationDetails> <ItemNo>1</ItemNo> <Name>Steven Reynolds</Name> <Length>38</Length> <NoItems>1</NoItems> <Reference /> <Weight>5</Weight> <Width>25</Width> </ConsignmentItem> </ConsignmentItems> <DeliveryInstructions>Deliver to Front Door.</DeliveryInstructions> <Description /> <DistributorID>{{DistributorID}}</DistributorID> <ReadyAt>14:00</ReadyAt> <Receiver><!--Mandatory:--> <AddressLocation> <CountryCode>AU</CountryCode> <SuburbStatePostcode>HALLAM VIC 3803</SuburbStatePostcode> </AddressLocation> <ATL>false</ATL> <Contact>CONTACT PERSON</Contact> <Country>AUSTRALIA</Country> <CountryCode>AU</CountryCode> <Email>hallam@company.com.au</Email> <Fax /> <Line1>89 Wellington Street</Line1> <Line2 /> <Line3 /> <Name>CUSTOMER F</Name> <Phone>03 6334 1000</Phone> </Receiver> <Reference>PO123456</Reference><!--Mandatory:--> <Released>2019-08-01T00:00:00</Released><!--Mandatory:--> <Sender><!--Mandatory:--> <AddressLocation> <CountryCode>AU</CountryCode> <SuburbStatePostcode>SCORESBY VIC 3179</SuburbStatePostcode> </AddressLocation> <Country>AUSTRALIA</Country> <CountryCode>AU</CountryCode> <Line1>7 Lakeview Drive</Line1> <Line2 <Phone>0425814806</Phone> <State>VIC</State> <Suburb>Nunawading</Suburb> </Sender> <Service>IPECL</Service> <SpecialInstructions/> <Line3 /> <Name>SENDER ENTITY</Name> <Phone /> </Sender> <Service>STEEXP</Service><!--Mandatory:--> <SpecialInstructions/> </consignment> </SaveConsignment> </consignment> </SaveConsignment> </soapenv:Body> </soapenv:Envelope> |
...