Read all the blue sections to better understand the documentation and the orange sections signifying the alert so avoid mistakes to be made during integrations and detailed integration procedures.
API keys are your digital references towards PayDunya systems. We use them to identify your account and the applications you will create. These keys are necessary for any integration of the APIs of PayDunya's payments APIs. Here are the steps to follow:
First you need have a PayDunya Business account activated. Create one if it is not yet the case.
Login to your account and click on oneAPI at the menu level on the left.
Click on the button Set up a new application and fill out the form.
Choose Test mode, I want to make payment tests
and
Enable production mode
.
Click on paydunya_java_latest.jar to download the latest version of our JAVA package and its dependencies.
Add after paydunya_java_latest.jar
at your CLASSPATH
.
Finally, import all the classes of the com.paydunya.neptune package into the file (s) where you want to use the PayDunya library:
import com.paydunya.neptune.*;
Login to your PayDunya account, click Integration API then on details
at the level of the application you have created, retrieve the API keys and give them as arguments to the following methods
PaydunyaSetup setup = new PaydunyaSetup();
setup.setMasterKey("wQzk9ZwR-Qq9m-0hD0-zpud-je5coGC3FHKW");
setup.setPrivateKey("test_private_rMIdJM3PLLhLjyArx9tF3VURAF5");
setup.setPublicKey("test_public_kb9Wo0Qpn8vNWMvMZOwwpvuTUja");
setup.setToken("IivOiOxGJuWhc5znlIiK");
setup.setMode("test"); // Optional. Use this option for test payments.
If you are in test use the test keys otherwise use the production keys and specify the mode by replacing "test"
with "live"
in the code above.
For more details on the transition to production click here.
You can configure your service/activity/company information as shown below. PayDunya uses these settings to configure the information that will appear on the payment page, PDF invoices, and printed receipts.
//Configuring your service/company information
PaydunyaCheckoutStore store = new PaydunyaCheckoutStore();
store.setName("Sandra's Store"); // Only the name is required
store.setTagline("Elegance has no price");
store.setPhoneNumber("336530583");
store.setPostalAddress("Dakar Plateau - Establishment kheweul");
store.setWebsiteUrl("http://www.chez-sandra.sn");
store.setLogoUrl("http://www.chez-sandra.sn/logo.png");
The IPN is the URL of the file on which you want to receive payment transaction information for possible backoffice processing. PayDunya uses this URL to send you information about the payment transaction instantly by POST
.
There are two ways to set up the Instant Payment Notification URL: either by going to your PayDunya account at the level of your app's configuration information or directly in your code.
Using the second option offers you the two possibilities below.
This instruction should be included in the configuration of your service/activity.
PaydunyaCheckoutStore store = new PaydunyaCheckoutStore();
store.setCallbackUrl("http://magasin-le-choco.com/callback_url");
This configuration will overwrite the previous global settings if they have already been defined.
invoice.setCallbackUrl("http://magasin-le-choco.com/callback_url.aspx");
The successful validation of the payment transaction returns the structure below containing the customer information, the URL of its PayDunya invoice in PDF format and also a hash to verify that the received data come from our servers.
array (
'data' =>
array (
'response_code' => '00',
'response_text' => 'Transaction Found',
'hash' => '8c6666a27fe5daeb76dae6abc7308a557dca5be1bda85dfe5d81fa330cdc0bc3c4b37765fe5d2cc36aa2ba0f9284226a80f5488d14740fa70769d6079a179406',
'invoice' =>
array (
'token' => 'test_jkEdPY8SuG',
'items' =>
array (
'item_0' =>
array (
'name' => 'Chaussures Croco',
'quantity' => '3',
'unit_price' => '10000',
'total_price' => '30000',
'description' => 'Chaussures faites en peau de crocrodile authentique qui chasse la pauvreté',
),
'item_1' =>
array (
'name' => 'Chemise Glacée',
'quantity' => '1',
'unit_price' => '5000',
'total_price' => '5000',
'description' => '',
),
),
'taxes' =>
array (
'tax_0' =>
array (
'name' => 'TVA (18%)',
'amount' => '6300',
),
'tax_1' =>
array (
'name' => 'Livraison',
'amount' => '1000',
),
),
'token': 'test_Jh2T8skw1j',
'total_amount' => '42300',
'description' => 'Paiement de 42300 FCFA pour article(s) achetés sur Magasin le Choco',
),
'custom_data' =>
array (
'categorie' => 'Jeu concours',
'periode' => 'Noël 2015',
'numero_gagnant' => '5',
'prix' => 'Bon de réduction de 50%',
),
'actions' =>
array (
'cancel_url' => 'http://magasin-le-choco.com/cancel_url.aspx',
'callback_url' => 'http://magasin-le-choco.com/callback_url.aspx',
'return_url' => 'http://magasin-le-choco.com/return_url.aspx',
),
'mode' => 'test',
'status' => 'completed',
'customer' =>
array (
'name' => 'Alioune Faye',
'phone' => '774563209',
'email' => '[email protected]',
),
'receipt_url' => 'https://paydunya.com/sandbox-checkout/receipt/pdf/test_jkEdPY8SuG.pdf',
),
)
The hash returned by PayDunya is the hash of your MasterKey. This hash will allow you to make sure that the data you have received comes from our servers. The algorithm used to obtain the hash is SHA-512
. In the expected response, a failure message is entered in the fail_reason
node only for failed
or canceled bank card transactions
.
PayDunya Make a Post request of type application/x-www-form-urlencoded
on your callback endpoint and post a data table containing the payment information. You must use the "data"
key before recovering a node. The returned structure is located under the index "data"
.
The hash returned by PayDunya is the hash of your MasterKey. This hash will allow you to make sure that the data you have received comes from our servers.
Never put your API keys in a file of your source code, instead use for example environment variables.
PayDunya's "Payment With Redistribution (PAR)" service allows you to create an invoice and redirect your customer to our platform so that it can complete the payment process. We recommend using the "Payment With Redistribution (PAR)" API because it is the most suitable in 99% of cases. The main advantage of this option is that customers can choose to pay from a variety of payment options available on our platform. In addition, if a new option is added in the future, it will appear directly on the payment page without you having to change anything in your source code.
/* Do this if you want to redirect your customers to our website
so that he can complete the payment process.
It is important to note that the constructor requires, as parameters, an instance of the PaydunyaSetup and PaydunyaStore classes. */
PaydunyaOnsiteInvoice invoice = new PaydunyaOnsiteInvoice(setup, store);
It is important to know that billing items are primarily used for presentation purposes on the payment page. PayDunya will not use any of the amounts declared to bill the customer. To do this, you must explicitly use the setTotalAmount
API method to specify the exact amount to bill the customer.
/*Adding items to your bill is very basic.
The expected parameters are product name, quantity, unit price,
the total price and an optional description. */
invoice.addItem("Croco shoes", 3, 10000, 30000, "Shoes made of genuine crocodile skin that hunts poverty");
invoice.addItem("Ice Shirt", 1, 5000, 5000);
You can optionally define a general invoice description that will be used in cases where you need to include additional information in your invoice.
invoice.setDescription("Description Optionnelle");
PayDunya expects you to specify the total amount of the customer's bill. This will be the amount that will be billed to your client. We consider that you have already done all calculations at your server before setting this amount.
PayDunya will not perform calculations on its servers. The total amount of the invoice set from your server will be the one that PayDunya will use to bill your customer.
invoice.setTotalAmount(42300);
After adding items to your invoice and configuring the total invoice amount, you can redirect your customer to the payment page by calling the create
method from your invoice object invoice
. Please note that the invoice.create()
method returns a boolean (true or false) depending on whether the invoice was successfully created or not. This allows you to put an if - else
statement and handle the result as you see fit.
// The following code describes how to create a payment invoice at our servers,
// and then post his payment receipt if successful.
if (invoice.create()) {
System.out.println(invoice.getStatus());
System.out.println(invoice.getResponseText());
System.out.println(invoice.getInvoiceUrl());
} else {
System.out.println(invoice.getResponseText());
System.out.println(invoice.getResponseCode());
}
This option is very interesting if you want to create your own payment solution over PayDunya or if you have to pay a certain percentage for each sale (in the case of a marketplace for example). The money is redistributed on the various PayDunya accounts of the recipients and the service is not invoiced.
You can transfer funds to other PayDunya customer accounts from your account via the Payment and Redistribution (PER) API. For security reasons, you must explicitly enable the Payment and Redistribution (PER) option in your integration/application configuration by going to your PayDunya account. You can always enable or disable the Payment and Redistribution (PER) service by updating the configuration of your integration/application by going to your PayDunya account.
PaydunyaDirectPay direct_pay = new PaydunyaDirectPay(setup);
if(direct_pay.creditAccount("EMAIL_OU_NUMERO_MOBILE_DU_CLIENT_PAYDUNYA", MONTANT_A_TRANSFERER)){
System.out.println("Status: " + direct_pay.getStatus());
System.out.println("Description: " + direct_pay.getDescription());
System.out.println("Transaction ID: " + direct_pay.getTransactionId());
}else{
System.out.println("Response: " + direct_pay.getResponseText());
}
You can add tax information on the payment page. This information will then be displayed on the payment page, PDF invoices and printed receipts, electronic receipts.
// The parameters are the name of the tax and the amount of the tax.
invoice.addTax("TVA (18%)", 6300);
invoice.addTax("Livraison", 1000);
If you need to add additional data to your payment request information for future use, we offer you the option of backing up custom data on our servers and recovering it once the payment is successful.
Custom data is not displayed anywhere on the checkout page, invoices/receipts, downloads, and impressions. They are only retrieved using our Confirm
callback action at the API level.
// Custom data allows you to add additional data to your billing information
// that can be retrieved later using our confirmed callback action
invoice.addCustomData("category", "Contest");
invoice.addCustomData("period", "Christmas 2015");
invoice.addCustomData("numero_gagnant", 5);
invoice.addCustomData("price","50% discount voucher");
By default, the payment methods activated in your integration configuration will all be displayed on the payment page for all your invoices.
However, if you want to keep the list of payment methods to display on the payment page of a given invoice, we offer you the possibility to do so using the methods addChannel
et addChannels
.
To obtain the names of the operators to assign as values to the channels key, please consult this link which lists the different operators available.
// Addition of means of payment individually
invoice.addChannel("free-money-senegal")
invoice.addChannel("card")
// Addition of several payment methods at a time
invoice.addChannels(new String[] {"card", "wave-senegal", "orange-money-senegal" })
You can optionally define a URL to which your customers will be redirected after an order cancellation.
There are two ways to configure the order cancellation URL: either globally at the configuration information level of your application or by order.
Using the second option overwrites the global settings if they have already been defined.
This instruction should be included in the configuration of your service/activity.
PaydunyaCheckoutStore store = new PaydunyaCheckoutStore();
store.setCancelUrl("http://magasin-le-choco.com/cancel_url");
This configuration will overwrite the global redirection settings if they have already been defined.
invoice.setCancelUrl("http://magasin-le-choco.com/cancel_url");
PayDunya does a great job of managing downloads and receipt printing of payments after your customer has successfully paid for their order. However, there may be cases where you would want to redirect your customers to another URL after they have successfully paid for their order. The configuration below meets this need.
PayDunya will add ?token=invoice_token
to your URL. We will explain how to use this token in the next chapter.
This instruction should be included in the configuration of your service/activity.
PaydunyaCheckoutStore store = new PaydunyaCheckoutStore();
store.setReturnUrl("http://magasin-le-choco.com/return_url");
This configuration will overwrite the global redirection settings if they have already been defined.
invoice.setReturnUrl("http://magasin-le-choco.com/return_url.aspx");
Our API allows you to check the status of all payment transactions using the invoice token. You can therefore keep your invoice token and use it to check the payment status of the invoice. The status of an invoice can be either pending (pending)
, canceled (canceled)
, or completed (completed)
depending on if yes or not the customer has paid the bill.
However, this option is suitable for PAR payments as it would allow you for example to know the payment status of your bill even if the customer is still on our payment page.
// PayDunya will automatically add the invoice token as a QUERYSTRING "token"
// if you have configured a "return_url" or "cancel_url".
String invoiceToken = "l21sjklsdl-s0mw";
PaydunyaCheckoutInvoice invoice = new PaydunyaCheckoutInvoice(setup, store);
if (invoice.confirm(invoiceToken)) {
// Retrieve payment status
// The payment status can be either completed, pending, cancelled
System.out.println(invoice.getStatus());
System.out.println(invoice.getResponseText());
// You can retrieve the name, email address and
// customer's phone number using
// the following methods
System.out.println(invoice.getCustomerInfo("name"));
System.out.println(invoice.getCustomerInfo("email"));
System.out.println(invoice.getCustomerInfo("phone"));
// The following methods will be available if and
// only if the payment status is equal to "completed".
// Retrieve the URL of the electronic PDF receipt for download
System.out.println(invoice.getReceiptUrl());
// Recover any of the custom data that
// you had to add to the bill previously.
// Please make sure to use the same keys used
// during the configuration.
System.out.println(invoice.getCustomData("Catégorie"));
System.out.println(invoice.getCustomData("Période"));
System.out.println(invoice.getCustomData("Gagnant N°"));
System.out.println(invoice.getCustomData("Prix"));
// You can also recover the total amount specified previously
System.out.println(invoice.getTotalAmount());
}else{
System.out.println(invoice.getStatus());
System.out.println(invoice.getResponseText());
System.out.println(invoice.getResponseCode());
}