Page History
...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://www.paysecure.ru/ws/"> <soapenv:Header/> <soapenv:Body> <ws:SilentPayResponse> <return> <ordernumber>silent-test-101468</ordernumber> <billnumber>599093519074915.1</billnumber> <testmode>0</testmode > <ordercomment></ordercomment> <orderamount>31.79</orderamount> <ordercurrency>RUB</ordercurrency> <firstname>Auto</firstname> <lastname>Test</lastname> <middlename></middlename> <email>null@assist.ru</email> <orderdate>14.06.2022 11:39:19</orderdate> <orderstate>In Process</orderstate> <operationtype>100</operationtype> <amount>31.79</amount> <currency>RUB</currency > <rate>1</rate> <ipaddress>127.0.0.1</ipaddress> <meantypename>QR code</meantype> <responsecode>AS300</responsecode> <message>preprocessing</message> <customermassage>preprocessing</customermassage> <recommendation></recommendation> <protocoltypename>NET</protocoltypename> <processingname>SbpRuSt</processingname> <fastpayurl>https://qr.nspk.ru/AD100006N581D0KV8HUOT2B84344SM83?type=02&bank=100000000014&sum=3179&cur=RUB&crc=CCFD</fastpayurl> <fastpaytimeout>14.06.2022 13:16:23</fastpaytimeout> <fastpaytype>qrdynamic</fastpaytype> <paketdate>14.06.2022 11:39:23</paketdate> <signature> </signature> </return> </ws:SilentPayResponse> </soapenv:Body> </soapenv:Envelope> |
The request result when paying via FPS in JSON format:
Code Block | ||
---|---|---|
| ||
{"silentpay": {"meantypename":"QR code", "customermessage":"preprocessing", "message":"preprocessing", "testmode":0, "protocoltypename":"NET", "operationtype":100, "customer": {"lastname":"test", "firstname":"test", "middlename":"", "ipaddress":"127.0.0.1", "email":"null@assist.ru"}, "orderdate":"14.06.2022 11:40:43", "packetdate":"14.06.2022 11:40:46", "orderamount":1.99, "ordercomment":"", "ordercurrency":"RUB", "recommendation":"", "processingname":"SbpRuSt", "orderstate":"In Process", "fastpay": {"url":"https://qr.nspk.ru/AD100025MS3FMK9K95LACS1LCQDKB18F?type=02&bank=100000000014&sum=199&cur=RUB&crc=A77C", "type":"qrdynamic", "timeout":"14.06.2022 13:17:46"}, "rate":1, "billnumber":"599093519074916.1", "currency":"RUB", "amount":1.99, "ordernumber":"silent-test-198954", "responsecode":"AS300"}} |
In case of successful payment the return code responsecode is equal to AS000 value.
...