HTTP + SOAP11
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: 7el.co
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: UMVoiceMailGreetings
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<UMVoiceMailGreetings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortaPlus2.API.Web.Dto.UM">
<ContentId xmlns="http://schemas.datacontract.org/2004/07/PortaPlus2.API.Web.Dto">0</ContentId>
<FeatureName xmlns="http://schemas.datacontract.org/2004/07/PortaPlus2.API.Web.Dto">String</FeatureName>
<License xmlns="http://schemas.datacontract.org/2004/07/PortaPlus2.API.Web.Dto">String</License>
<UMLogin xmlns:d2p1="http://schemas.datacontract.org/2004/07/PortaPlus2.Soap.Client.UM">
<d2p1:accountId>String</d2p1:accountId>
<d2p1:domain>String</d2p1:domain>
<d2p1:login>String</d2p1:login>
<d2p1:password>String</d2p1:password>
</UMLogin>
<VMGreetings xmlns:d2p1="http://schemas.datacontract.org/2004/07/Porta.SoapTest.VoiceMail">
<d2p1:greeting_infoField>
<d2p1:filenameField>String</d2p1:filenameField>
<d2p1:greeting_typeField>String</d2p1:greeting_typeField>
</d2p1:greeting_infoField>
</VMGreetings>
<fileType>String</fileType>
<greetingType>String</greetingType>
</UMVoiceMailGreetings>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<UMVoiceMailGreetingsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortaPlus2.API.Web.Dto.UM">
<SetVMGreetingsResponse xmlns:d2p1="http://schemas.datacontract.org/2004/07/Porta.SoapTest.VoiceMail">
<d2p1:successField>0</d2p1:successField>
</SetVMGreetingsResponse>
<VoiceMailGreetingsResponse xmlns:d2p1="http://schemas.datacontract.org/2004/07/Porta.SoapTest.VoiceMail">
<d2p1:filenameField>String</d2p1:filenameField>
</VoiceMailGreetingsResponse>
</UMVoiceMailGreetingsResponse>
</soap:Body>
</soap:Envelope>