Request
Example:text/xml; charset=utf-8
Body Params application/xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SayHelloRequest>
<firstName>string</firstName>
</SayHelloRequest>
</soap:Body>
</soap:Envelope>
Request samples
curl --location --request POST '/SayHello/' \
--header 'SOAPAction: sayHello' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data-raw '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SayHelloRequest>
<firstName>string</firstName>
</SayHelloRequest>
</soap:Body>
</soap:Envelope>'
Responses
application/xml <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SayHelloResponse>
<greeting>string</greeting>
</SayHelloResponse>
</soap:Body>
</soap:Envelope>
Modified at 2023-12-26 03:16:34