Alternative payment methods

To make payments through alternative payment method, the Create request is used. The response to the request contains data necessary for making the payment.

Example of response data:

{
   "orders":[
      {
         "id":"85341004036767914",
         "...""alternative_payments":[
            {
               "image":"https://checkout_domain.example/img/button_image.svg",
               "url":"https://checkout_domain.example/open_banking/create_payment/85629878248914133",
               "provider":"Terminal for Open Banking"
            }
         ]"..."
      }
   ]
}

https://checkout_domain.example/open_banking/create_payment/85629878248914133 - user redirect link.

If necessary, the merchant configures the display of the payment button and the field for entering the one-time password on their website.

Example HTML code for displaying the button:

<form method="POST" action="https://checkout_domain.example/open_banking/create_payment/85629878248914133"> 
    <input name="order_id" type="hidden" value="85341004036767914">
    <button type="submit">
        <img src="https://checkout_domain.example/img/button_image.svg" /> 
    </button>
</form>

Last updated