Working with SOAP APIs
This section explains how to configure Connector Actions that interact with SOAP Web Services.
Introduction
Creating the SOAP Request Body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://webservice.example.com/">
<soapenv:Header/>
<soapenv:Body>
<web:getDetails>
<id>{{ id }}</id>
</web:getDetails>
</soapenv:Body>
</soapenv:Envelope>Endpoint Details
Reading Details from the WSDL
Reading Documentation from the XSD
Testing Requests
Testing with SoapUI

New SOAP Project dialog

Setting SOAPAction manually inside SoapUI request settings.
Testing with Postman

Request with Headers in Postman
Testing directly inside Locoia

Parsing SOAP Responses
Special Notes
Last updated
Was this helpful?