Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Цей функціонал буде активовано після вашого запиту в груповому чаті. Також обов'язково надайте список ваших IP адрес з яких будуть надходити запити для додавання в білий список.


Зміст

Table of Contents

Опис

Цей метод дозволить вам проводити додаткову перевірку статуса оплати по ордеру присвоєному системою PSP Platon.

Рекомендуємо використовувати у випадку, якщо ви не змогли отримати callback або response.

Info

Запит по одному ордеру можна відправляти не частіше одного разу за хвилину.


API параметри

HTTP METHOD: POST

API ENDPOINT: https://secure.platononline.com/p2p-unq/

Параметр

Значення

Опис

Особливості

action

Status
colourGreen
titleОбов'язковий

GET_TRANS_STATUS

Код платіжного метода

client_key

Status
colourGreen
titleОбов'язковий

String

API ключ мерчанта

Ключ надається на пошту мерчанту

trans_id

Status
colourGreen
titleОбов'язковий

String

ID виплати в системі Platon

hash

Status
colourGreen
titleОбов'язковий

String

Контрольний підпис

Code Block
languagephp
md5(
  strtoupper(
  client_pass.
  trans_id.
  strrev(
    substr(
      card_number,0,6
    ).
    substr(
      card_number,-4
    )
  )
)

Приклад запиту

Expand
titleПриклад запиту на PHP
Code Block
languagephp
<?php
   $action $client_pass = 'GET_TRANS_STATUS***';
    $card_number = '41111111111111111';
  $client_key  $data['action'] = '***GET_TRANS_STATUS';
    $client_pass$data['client_key'] = '***';
    $trans$data['trans_id'] = '21151-88549-33417';
  $card_number = $data['41111111111111111';hash'] = md5(
         $hash = md5(             strtoupper(
                            $client_pass.
              $trans              $data['trans_id'].
                            strrev(
                                substr($card_number,0,6).
                                substr($card_number,-4)
                            )
             )           );
?>
        <!DOCTYPE html> <html>   <head>     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> );
             <title>status</title>   </head>   <body onload="javascript:document.forms[0].submit()">
    <form$url action=" 'https://secure.platononline.com/p2p-unq/" method="post">
';
    $crq = curl_init();
     <input type="hidden" name="action" value="<?=$action?>" />
      <input type="hidden" name="client_key" value="<?=$client_key?>" />
      <input type="hidden" name="trans_id" value="<?=$trans_id?>" />
      <input type="hidden" name="hash" value="<?=$hash?>" />
    </form>            curl_setopt($crq, CURLOPT_URL, $url);
    curl_setopt($crq, CURLOPT_HEADER, 0);
    curl_setopt($crq, CURLOPT_POST, 1);
    curl_setopt($crq, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($crq, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($crq, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($crq, CURLOPT_POSTFIELDS, http_build_query($data));
    $result = curl_exec($crq);
    if (curl_errno($crq)) {
        echo 'ERROR: '.curl_error($crq);
    }else{
        echo $result;
    }
    </body>
</html>curl_close($crq);

Iframe
scrollingno
srchttps://devplaton.com.ua/invoices/postman-test.html
frameborderhide
styleheight: 260px;

Response

Expand
titleResponse при успішному запиті
Code Block
languagejson
{
  "action":"GET_TRANS_STATUS",
  "result":"SUCCESS",
  "status":"SETTLED",
  "order_id":"PLS-4389118",
  "trans_id":"27924-27840-88227"
}
Expand
titleResponse при помилці запиту
Code Block
languagejson
{
  "result":"ERROR",
  "error_message":"Incorrect hash"
}