Reference for http://api.esms.vn/MainService.svc/xml/CPRequest/{SENDER}/{KEYWORD}/{CONTENT}/{SERVICESNUMBER}/{AUTHENKEY}/{CPID}/{SMSID}/{TIME}
Url: http://api.esms.vn/MainService.svc/xml/CPRequest/{SENDER}/{KEYWORD}/{CONTENT}/{SERVICESNUMBER}/{AUTHENKEY}/{CPID}/{SMSID}/{TIME}
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:
<ClientResponse> <Message>String content</Message> <SmsId>String content</SmsId> <Receiver>String content</Receiver> </ClientResponse>
The following is the response Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="ClientResponse" nillable="true" type="ClientResponse" /> <xs:complexType name="ClientResponse"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="1" name="Message" type="xs:string" /> <xs:element minOccurs="0" maxOccurs="1" name="SmsId" type="xs:string" /> <xs:element minOccurs="0" maxOccurs="1" name="Receiver" type="xs:string" /> </xs:sequence> </xs:complexType> </xs:schema>