WebService Example
DevelopingPOST
https://www.dataaccess.com/webservicesserver/NumberConversion.wsoWebService Usage Tips
:::info
Apidog needs to be upgraded to version 2.1.31
or higher.
:::
- Manually set the Header
Content-Type
value totext/xml; charset=utf-8
orapplication/soap+xml
(depending on the actual situation). - Set the Body format to
xml
. - The format of the returned response content is
XML
.
Request
Header Params
Content-Type
string
optional
Example:
text/xml; charset=utf-8
Body Params application/xml
soap:Body
object
required
NumberToWords
object
required
Example
<?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>
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : XMLapplication/xml
Data Schema
soap:Body
object
required
m:NumberToWordsResponse
object
required
Example
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope>
<soap:Body>
<m:NumberToWordsResponse>
<m:NumberToWordsResult>string</m:NumberToWordsResult>
</m:NumberToWordsResponse>
</soap:Body>
</soap:Envelope>
Last modified: 2 months ago