In this instance I am making a call to GetChargeQuote in my uat environment through postman, Things I need to perform this call:
- My Session Credentials form my previous Login Call
- Note Session Credentials will expire If
- You Have generated a new "Key"
- You Have Passed the Expiry Date of the Session
- The User has been Deleted/made inactive
- Note Session Credentials will expire If
- Your package/quote information
*Learn how to chain this call in 5) Creating Chained Requests
Endpoint: https://bau-uat-ws.azurewebsites.net/Data/ChainIT/DataService.svc
Headers:
- Key: Content-Type Value: text/xml
- Key: SoapAction Value: http://www.opensys.com.au/ChainIT/4.0/ChainITDataServices/IChainITService/ValidateLocation
Not Required
Header declaration is not required for SoapUI. *SoapUI does this automatically
Body:
Web Service Call
<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:ValidateLocation> <cha:location> <cha:Locality>North Sydney</cha:Locality> <!--Mandatory:--> <cha:State>NSW</cha:State> <!--Mandatory:--> <cha:Postcode>2060</cha:Postcode> <!--Mandatory:--> <cha:CountryCode>AU</cha:CountryCode> <!--Optional - Will Default to AU if not provided:--> </cha:location> </cha:ValidateLocation> </soapenv:Body> </soapenv:Envelope>
Related articles
Filter by label
There are no items with the selected labels at this time.