Skip to content

SOAP

This content is for Backend. Switch to the latest version for up-to-date documentation.

SOAP is an older XML-based protocol used in many enterprise systems.

It’s less common for new web apps, but still appears in long-lived integrations.

  • Legacy enterprise integrations (especially older vendor systems)
  • Regulated industries with long-running contracts (finance, government)
  • PayPal: historically offered SOAP APIs (alongside other options)
  • Salesforce: supports SOAP APIs for certain integrations

Note: company tech choices change over time; these are common, well-known examples.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUser>
<Id>42</Id>
</GetUser>
</soap:Body>
</soap:Envelope>
Built with passion by Ngineer Lab