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

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

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:

<MobileChargeResponse>
  <CodeResponse>String content</CodeResponse>
  <ErrorMessage>String content</ErrorMessage>
  <AmountCharge>String content</AmountCharge>
</MobileChargeResponse>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="MobileChargeResponse" nillable="true" type="MobileChargeResponse" />
  <xs:complexType name="MobileChargeResponse">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="1" name="CodeResponse" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="AmountCharge" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>