Reference for http://api.esms.vn/MainService.svc/xml/GetSmsStatus/

Url: http://api.esms.vn/MainService.svc/xml/GetSmsStatus/

HTTP Method: POST

Message direction Format Body
Request Unknown The Request body is a byte stream.
Response Xml Example,Schema

The following is an example response Xml body:

<SmsStatus>
  <StatusCode>2147483647</StatusCode>
  <CodeResult>String content</CodeResult>
  <SuccessCount>2147483647</SuccessCount>
  <FailedCount>2147483647</FailedCount>
  <ErrorMessage>String content</ErrorMessage>
  <TotalSent>2147483647</TotalSent>
  <TotalReceiver>2147483647</TotalReceiver>
  <TotalPrice>12678967.543233</TotalPrice>
</SmsStatus>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="SmsStatus" nillable="true" type="SmsStatus" />
  <xs:complexType name="SmsStatus">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="StatusCode" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="CodeResult" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="SuccessCount" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="FailedCount" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalSent" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalReceiver" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalPrice" type="xs:decimal" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>