Public
Documentation Settings

Postman Training - SOAP

This is a collection of different SOAP APIs that are completely public and do not require any authentication, making it easier for consumers to play with and understand what APIs are all about by seeing the many different ways in which APIs can be used. I have added basic Tests using Cheerio, user defined functions, some Math functions. This will provide an idea for those who start their SOAP API testing in Postman.

Numbers

Some basic numbers requests.

POSTNumberToWords

https://www.dataaccess.com/webservicesserver/NumberConversion.wso

Returns the word corresponding to the positive number passed as parameter. Limited to quadrillions. Added basic tests and on parsing the XML response.

HEADERS
Content-Type

text/xml; charset=utf-8

Bodyraw
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <NumberToWords xmlns="http://www.dataaccess.com/webservicesserver/">
      <ubiNum>500</ubiNum>
    </NumberToWords>
  </soap:Body>
</soap:Envelope>
Example Request
curl
curl --location 'https://www.dataaccess.com/webservicesserver/NumberConversion.wso' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <NumberToWords xmlns="http://www.dataaccess.com/webservicesserver/">
      <ubiNum>500</ubiNum>
    </NumberToWords>
  </soap:Body>
</soap:Envelope>'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTNumberToDollars

https://www.dataaccess.com/webservicesserver/NumberConversion.wso

Returns the non-zero dollar amount of the passed number. Added Tests by creating the user defined functions.

HEADERS
Content-Type

text/xml; charset=utf-8

Bodyraw
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <NumberToDollars xmlns="http://www.dataaccess.com/webservicesserver/">
      <dNum>{{int}}</dNum>
    </NumberToDollars>
  </soap:Body>
</soap:Envelope>
Example Request
curl
curl --location 'https://www.dataaccess.com/webservicesserver/NumberConversion.wso' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <NumberToDollars xmlns="http://www.dataaccess.com/webservicesserver/">
      <dNum>{{int}}</dNum>
    </NumberToDollars>
  </soap:Body>
</soap:Envelope>'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers