<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:SendSMSService___GetReport>
<tem:login>mycompany</tem:login>
<tem:password>123456</tem:password>
<tem:begind>2022-09-21 00:00:00</tem:begind>
<tem:endd>2022-09-23 00:00:00</tem:endd>
</tem:SendSMSService___GetReport>
</soapenv:Body>
</soapenv:Envelope>
curl --location --request POST 'http://isms.center/soap/server' \
--header 'SOAPAction: urn:SendSMSLib-SendSMSService#GetReport' \
--header 'Content-Type: text/xml' \
--data-raw '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:SendSMSService___GetReport>
<tem:login>mycompany</tem:login>
<tem:password>123456</tem:password>
<tem:begind>2022-09-21 00:00:00</tem:begind>
<tem:endd>2022-09-23 00:00:00</tem:endd>
</tem:SendSMSService___GetReport>
</soapenv:Body>
</soapenv:Envelope>'
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tempuri.org/">
<SOAP-ENV:Body>
<ns1:SendSMSService___GetReportResponse>
<ns1:Result>
<ns1:ResultCode>0</ns1:ResultCode>
<ns1:ResultS>Ok</ns1:ResultS>
<ns1:RecepCount>23</ns1:RecepCount>
<ns1:SmsCount>23</ns1:SmsCount>
<ns1:DelivCount>23</ns1:DelivCount>
<ns1:UndelivCount>0</ns1:UndelivCount>
<ns1:SendCount>0</ns1:SendCount>
<ns1:SentCount>0</ns1:SentCount>
<ns1:SendingCount>0</ns1:SendingCount>
</ns1:Result>
</ns1:SendSMSService___GetReportResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>