In this guide, you'll learn how to integrate Paystack payment system on your website.
This guide is comprehensive, so you should go through every information for maximum output.
Paystack is a Modern online and offline payments for Africa.
Before you can start integrating Paystack, you will need a Paystack account. Create a free account now if you haven't already done so.
The Paystack API gives you access to pretty much all the features you can use on your account dashboard and lets you extend them for use in your application. It strives to be RESTful and is organized around the main resources you would be interacting with - with a few notable exceptions.
After creating an account, the next thing is to sign in to your new Paystack account. On your dashboard, you will find your public and secret key. We will make use of the public and secret key for this guide.
Spotlight: I built a better alternative to AbokiFX, you can check it out here.
Let Dive In
Paystack has three major approaches to integrate their API and collect payments on your websites. But this guide explains only two approaches. The third approach is with pure JavaScript, which I will discuss entirely on a separate post.
Using any one of the two depends on what you're trying to do. Each one comes with its own user and developer experience.
Paystack Inline
This approach offers a simple, secure and convenient payment flow for web. It can be integrated with a line of code thereby making it the easiest way to start accepting payments. It also makes it possible to start and end the payment flow on the same page, thus combating redirect fatigue.
Now, the code below displays a Paystack pay button.
<form>
<script src="https://js.paystack.co/v1/inline.js"></script>
<button type="button" onclick="payWithPaystack()"> Pay </button>
</form>
The pay button is yet to do what you expect. So if you click on it, nothing will happen. For it to work you need to add the payWithPaystack() Javascript function below the form.
Here is the payWithPaystack function provided by Paystack.
<!-- place below the html form -->
<script>
function payWithPaystack(){
var handler = PaystackPop.setup({
key: 'paste your key here',
email: 'customer@email.com',
amount: 10000,
ref: ''+Math.floor((Math.random() * 1000000000) + 1), // generates a pseudo-unique reference. Please replace with a reference you generated. Or remove the line entirely so our API will generate one for you
metadata: {
custom_fields: [
{
display_name: "Mobile Number",
variable_name: "mobile_number",
value: "+2348012345678"
}
]
},
callback: function(response){
alert('success. transaction ref is ' + response.reference);
},
onClose: function(){
alert('window closed');
}
});
handler.openIframe();
}
</script>
You need to replace the key: value 'paste your key here' with the public key on your Paystack account settings. If login, you can locate the key here.
Please note that the key to use with inline is the public key and not the secret key
If you did it correctly, on the click of the pay button, a nice looking Paystack payment UI will pop out. Since you're testing the payment API, you should use a test card.
To use a test card, you should use the test public key instead. And never forget to replace the test public key with the live public key on a live website.
When the payment is successful, your browser will show an alert, indicating a successful transaction, with a reference key.
With this Inline method, everything works on a single page. Also, notice the callback and onClose object key. The callback allows you to control the user experience within a callback function if the payment is successful. e.g Redirecting the user to a Thank You page.
Paystack Standard
This is the standard approach of collecting payments on your web app. The standard approach is a better and secure way to integrate within your php web app.
Now, for this approach to work on your server you need to confirm that your server can conclude a TLSv1.2 connection. Most up-to-date servers have this capability. If you're on a web server, you contact your service provider for guidance if you have any SSL errors.
For this approach, you'll need to create two new files.
initialize.php
callback.php
Initialize a transaction
Paste the following code inside the initialize.php
<?php
$curl = curl_init();
$email = "your@email.com";
$amount = 30000; //the amount in kobo. This value is actually NGN 300
// url to go to after payment
$callback_url = 'myapp.com/pay/callback.php';
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.paystack.co/transaction/initialize",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount'=>$amount,
'email'=>$email,
'callback_url' => $callback_url
]),
CURLOPT_HTTPHEADER => [
"authorization: Bearer sk_test_36658e3260b1d1668b563e6d8268e46ad6da3273", //replace this with your own test key
"content-type: application/json",
"cache-control: no-cache"
],
));
$response = curl_exec($curl);
$err = curl_error($curl);
if($err){
// there was an error contacting the Paystack API
die('Curl returned error: ' . $err);
}
$tranx = json_decode($response, true);
if(!$tranx['status']){
// there was an error from the API
print_r('API returned error: ' . $tranx['message']);
}
// comment out this line if you want to redirect the user to the payment page
print_r($tranx);
// redirect to page so User can pay
// uncomment this line to allow the user redirect to the payment page
header('Location: ' . $tranx['data']['authorization_url']);
The initialize.php will initialize your customer transaction with the paystack API and redirect the user to a Paystack payment page.
On a live server, replace the test key with your own live secret key. Look for the line with comment 'replace this with your own test key' and remove the sk_test_xxxxxxxxx to your secret key.
Note that, the $email and $amount are the customer's email address and the amount they are to pay while the $callback_url is the URL the customer will be redirected to after payment.
Bringing the customers back to your site is an important part of the standard approach, so don't forget to change the $callback_url to that of your app.
The email and amount can be collected through forms or whatever way you intended.
The
$amountis in Nigeria Kobo, so always add double zeros on any amount you are charging the customer. e.g 100000 for 1000
You can use this money tool for accuracy on the complicated amount.
When the customer enters their card details, Paystack will validate and charge the card. When successful, it will then redirect back to your callback_url set when initializing the transaction or on your dashboard at: https://dashboard.paystack.co/#/settings/developer .
If your
callback_urlis not set, your customers see a "Transaction was successful" message without any redirect.
Verify the Transaction
Now, since the callback is specified in your code, you need to set the callback.php.
Enter the code below inside the callback.php
<?php
$curl = curl_init();
$reference = isset($_GET['reference']) ? $_GET['reference'] : '';
if(!$reference){
die('No reference supplied');
}
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.paystack.co/transaction/verify/" . rawurlencode($reference),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"accept: application/json",
"authorization: Bearer SECRET_KEY",
"cache-control: no-cache"
],
));
$response = curl_exec($curl);
$err = curl_error($curl);
if($err){
// there was an error contacting the Paystack API
die('Curl returned error: ' . $err);
}
$tranx = json_decode($response);
if(!$tranx->status){
// there was an error from the API
die('API returned error: ' . $tranx->message);
}
if('success' == $tranx->data->status){
// transaction was successful...
// please check other things like whether you already gave value for this ref
// if the email matches the customer who owns the product etc
// Give value
echo "<h2>Thank you for making a purchase. Your file has bee sent your email.</h2>";
}
If you follow the steps correctly. You will get the following result.
If you run into the error below.
API returned error: Transaction reference not found
Then make sure the SECRET_KEY in callback.php is the same as the one used in the initialize.php and the callback URL should be a live domain.
Congratulation, you just integrated paystack payment into your app.
Have any problem, you can comment. If it is urgent, you can message me on Twitter.
Hints
Go to dashboard > settings > webhook/keys to get your public and secret key for both the live and test.
The live keys are used for production purpose. While the public is for testing purpose.
To enable live mode on paystack, you'll need to submit your business details.



Oldest comments (89)
Very good intro for me. Thank you for this cool post! :)
Thank you.
well detailed analogy... God bless you man!
Amen, thanks.
Wow, Love this detailed tutorials @ijsucceed . Please am faced with a challenge.
i want to make for recurring debit but i was not able to retrieve "authentication code and card last four digits" after the successful payment. Help me out sir.
please see developers.paystack.co/reference#c...
.....
"gateway_response": "Successful",
"authorization": {
"authorization_code": "AUTH_72btv547",
"card_type": "mastercard",
"last4": "1839",
........
Sorry, bro. I have no experience working on the recurring payment API.
Thanks for your prompt reply sir.
thanks very much jeremiah, you provide what i have been looking for. please i still have a little problem. the code work successfully, but know, i need php code to insert the figure to the user wallet or account. so that he can confirm the transaction he made. regards
Which user wallet are you referring to? is it that of Paystack or your own platform. Please specify.
I'm talking about my platform. Take for example, a user login to his/her account in my platform, and deposit money, using the paystack payment gateway.. Now I'm looking for the php script to give the user value, (e.g. he/she deposits #500 using paystack, and it was successful,, when he/she come back to my platform, he/she has to see the #500 in her account, to confirm that the payment he/she made was successful)
You're to write the script yourself. You do that in the callback file.
if('success' == $tranx->data->status){
// transaction was successful...
// send the value the user made to the database and redirect back to any
// file you want.
}
Hope you get it?
that is my issue now. have write many php script code with the little knowledge i have, but nothing happen. please i need a sample of already working php code, to learn from. i will be glad if anyone can share with me. regards
you need to create a webhook url where paystack sends a charge.success event to, if the payment was made successfully. It's in that webhook file you can update the users wallet if a charge.success event was received. Visit paystack documentation page for a better understanding.
@ijsucceed Thanks for the tutorial. Its very detailed. But am unable to get it redirect back to my site(the callback url). I don't know why. What version is the tutorial based on(Mine is version2+)
Did you set the callback_url?
Yes, I did
I don't suggest version 2, it's currently in Beta. Money here, hackers everywhere.
Good day sir. please i really need your help. Am using Paystack Inline but the list of banks i need are not in the list already made in the Api. please is there anyway i can add mine.
Thank you very much
Oluwaseun, thanks for reading.
Hi Jeremiah,
i am getting this error in test mode after initiating a transaction "API returned error: Authorization URL created" am I doing something wrong.
Are you on a Live server or Local? The callback.php should be on a live server.
I am on a live server and the callback.php is also on the live server.
Since the error is from the API, I suggest you do it again.
Hi Jeremiah.
Thanks for the detailed instructions.
I've been able to implement Paystack gateway successfully and gets a redirect to the specified callback URL.
But I'm having issues transferring data from the payment page to the webook URL specified on the Paystack dashboard.
Any hint on how that can be achieved?
Thank you.
Welcome! Have you taken a look at this?
Nice and clear explanation.
My problem is that the call back function does not provide the payment details (I.e the customer email) so as to insert in it MySQLi data base.
Or I'm to use session to keep the record
The payment details are usually sent (as JSON) to your webhook url.
But, just like you said, you should use the user session, then make sure you verify the session with the user details in your database.
Is it necessary I purchase SSL for my site when using standard?
Sure! Will you want to make a payment on a site that shows "site not secure"?.
As stated in the Paystack Standard Prerequisites: