Versions Compared

Key

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

...

Code Block
languagexml
themeRDark
firstline1
titleWeb Service Call
linenumberstrue
<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:CancelConsignment>
         <!--Optional:-->
         <cha:session>
            <!--Optional:-->
            <cha:AccountID>115860</cha:AccountID>
            <!--Optional:-->
            <cha:DistributorID>101605</cha:DistributorID>
            <!--Optional:-->
            <cha:Expires>2020-08-09T15:26:57.87</cha:Expires>
            <!--Optional:-->
            <cha:Key>5158851E-1D9C-47D7-A384-55690F4A0B1E</cha:Key>
            <!--Optional:-->
            <cha:UserID>64796</cha:UserID>
         </cha:session>
         <!--Optional:-->
         <cha:consignmentID>80423074</cha:consignmentID>
      </cha:CancelConsignment>
   </soapenv:Body>
</soapenv:Envelope>


Info

<cha:consignmentID> can be found 2 ways

  1. Access "Manifest Consignments" 
    1. Inspect Webpage (F12 then CTRL + F "ConsignmentId)
    2. Image Added

  2. Access "Manifest Consignments" 
    1. Open Lablel
    2. Copy Numeric Value within the URL
    3. Image Added


Code Block
languagexml
themeRDark
firstline1
titleSuccessful Web Service Call Response
linenumberstrue
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <CancelConsignmentResponse xmlns="http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices">
         <CancelConsignmentResult>true</CancelConsignmentResult>
      </CancelConsignmentResponse>
   </s:Body>
</s:Envelope>

...