After having followed the steps found in the section introduction, you can then integrate this API Client
.
The PSR Payment Without Redirection
, as its name suggests, is a service that allows your customers to make payments on your website without being redirected to the PayDunya payment page. This section explains how to integrate it into your website.
You must first generate an invoice checkout as you do with PAR, in "test"
mode or live
mode (see section of the PAR API to generate an invoice checkout) according to your programming language. Then retrieve the token and return it in format json
as soon as you call your indicated endpoint
below by an HTTP GET request:
You need to replace [your-domain]
with your domain name.
https://example.com
, then the url will be https://exemple.com/paydunya-api
.
The HTML structure to be implemented is broken down into three parts explained in the sections below. To better detail this structure, here are the essential points :
head
of HTML structure.pay
button inside the body
tag.payWithPaydunya
function:The attributes are the elements which are at the button
tag of the Pay
. They are optional because they contain information that is not mandatory.
data-ref
attribute is in some way an identifier for a given payment. It allows you to associate a reference with a payment. After closing the payment window, this identifier is associated with the payment status.
data-fullname
, data-email
and data-phone
are three attributes that allow the full name, email and phone of the payer to be prefilled at the time of payment. They will not need to fill them out.
The options are the attributes which are in the object passed in parameter to the javascript function Paydunya.setup()
in the structure above. Are two attributes which allow to prefill the full name and email of the payer at the time of payment. They will not need to fill them out.
The options with the red asterisks *
are mandatory.
selector: $(btn)
url: "https://[your-domain]/paydunya-api"
Here it is a question of giving your URL which will return the payment link
method : GET
displayMode: PayDunya.DISPLAY_IN_POPUP
This function is called just before query execution to your url https://[your-domain]/paydunya-api
to retrieve the token and the payment link.
OnSuccess is executed after successfully retrieving the token and the payment link from your urlhttps://[your-domain]/paydunya-api
.
This function is performed immediately after payment. It will give you as a parameter your reference given at the start, the token, and the payment status : pending
, completed
, failed
et cancelled
.
onError is called if there is an error in processing.
For this function, it is when the treatment has not been successfully executed.
onClose is the function that will be executed after closing the payment window. It will give you as a parameter the ref given at the start associated with the payment status: pending
, completed
, failed
and canceled