Reference for http://api.esms.vn/MainService.svc/xml/CloneGetSentStatusDetail/{SENDID}/{REFID}
Url: http://api.esms.vn/MainService.svc/xml/CloneGetSentStatusDetail/{SENDID}/{REFID}
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:
<CloneSmsDetails>
<CodeResult>String content</CodeResult>
<ErrorMessage>String content</ErrorMessage>
<SentStatus>
<PhoneSentStatus>
<Phone>String content</Phone>
<IsSucccess>true</IsSucccess>
<IsSent>true</IsSent>
</PhoneSentStatus>
<PhoneSentStatus>
<Phone>String content</Phone>
<IsSucccess>true</IsSucccess>
<IsSent>true</IsSent>
</PhoneSentStatus>
</SentStatus>
</CloneSmsDetails>
The following is the response Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="CloneSmsDetails" nillable="true" type="CloneSmsDetails" />
<xs:complexType name="CloneSmsDetails">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="CodeResult" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="SentStatus" type="ArrayOfPhoneSentStatus" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="ArrayOfPhoneSentStatus">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="PhoneSentStatus" nillable="true" type="PhoneSentStatus" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="PhoneSentStatus">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="Phone" type="xs:string" />
<xs:element minOccurs="1" maxOccurs="1" name="IsSucccess" type="xs:boolean" />
<xs:element minOccurs="1" maxOccurs="1" name="IsSent" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:schema>