Page History
To notify the merchant about payment results in real-time the IPS Assist provides the service for synchronous sending the results of the payment to the merchant server. After completion of the buyer payment (by bankcard or by e-cash) the message is being sent to the merchant server via HTTP POST or SOAP method with parameters of the payment.
...
| Code Block | ||
|---|---|---|
| 
 | ||
| <?xml version="1.0" encoding="UTF-8"?>
<pushpaymentresult firstcode="0" secondcode="0">
  <order>
    <billnumber>value</billnumber>
    <packetdate>value</packetdate>       
  </order>
</pushpaymentresult> | 
In case of failure:
| Code Block | ||
|---|---|---|
| 
 | ||
| <?xml version="1.0" encoding="UTF-8"?>
<pushpaymentresult firstcode="value" secondcode="value">
</pushpaymentresult> | 
For SOAP protocol type
In case of the successful receiving and processing message the format of the replay packet should be:
...
