Reference for http://api.esms.vn/MainService.svc/xml/GetSendStatus?RefId={SMSID}&ApiKey={APIKEY}&SecretKey={SECRETKEY}&Email={EMAIL}

Url: http://api.esms.vn/MainService.svc/xml/GetSendStatus?RefId={SMSID}&ApiKey={APIKEY}&SecretKey={SECRETKEY}&Email={EMAIL}

HTTP Method: GET

Message direction Format Body
Request N/A The Request body is empty.
Response Xml Example,Schema

The following is an example response Xml body:

<SmsStatusResult>
  <SMSID>String content</SMSID>
  <SendStatus>2147483647</SendStatus>
  <CodeResponse>String content</CodeResponse>
  <SendSuccess>2147483647</SendSuccess>
  <SendFailed>2147483647</SendFailed>
  <TotalReceiver>2147483647</TotalReceiver>
  <TotalSent>2147483647</TotalSent>
  <TotalPrice>12678967.543233</TotalPrice>
  <PhoneFailList>String content</PhoneFailList>
</SmsStatusResult>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="SmsStatusResult" nillable="true" type="SmsStatusResult" />
  <xs:complexType name="SmsStatusResult">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="1" name="SMSID" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="SendStatus" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="CodeResponse" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="SendSuccess" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="SendFailed" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalReceiver" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalSent" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="TotalPrice" type="xs:decimal" />
      <xs:element minOccurs="0" maxOccurs="1" name="PhoneFailList" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>