SwwipePay
SwwipePay library provides a simple and convenient payment flow for web. It can be integrated in easy steps, making it the easiest way to start accepting payments. you can make use of the SwwipePay CDN.Collecting Customer Information
To initialize the transaction, you need to pass information such asemail
, amount
, transaction reference
, etc.
The key, email
and amount
parameters are the only required parameters. The table below lists the parameters that you can pass when initializing a transaction.
Param | Required | Description |
---|---|---|
merchantKey | Yes | Your public key from PaywithSwwipe. Use test key for test mode and live key for live mode |
email | Yes | Email address of customer |
amount | Yes | Amount(in the lowest currency value -kobo) you are debiting customer. |
reference | Yes | Unique case sensitive transaction reference. If you do not pass this parameter, PaywithSwwipe will generate a unique reference for you. |
currencyCode | No | Currency charge should be performed in. Allowed value is: NGN |
callback | No | Function that runs when a payment is successful. This should ideally be a script that uses the verify endpoint on the PaywithSwwipe API to check the status of the transaction |
onClose | No | JavaScript function that is called if the customer closes the payment window instead of making payment. |
index.html
index.js
- The
pay
button has been tied to anonClick
function calledpayWithSwwipe
. This is the action that causes SwwipePay library popup to load.
Important Notes
- the
merchantKey
field here takes your PaywithSwwipe publickey. - The
amount
field has to be converted to the lowest currency unit by multiplying the value by100
so if you wanted to charge** N50**, you have to multiply** 50 * 100** and pass 5000 in the amount field. - It’s ideal to generate a unique
reference
from your system for every transaction to avoid duplicate attempts. - The
callback
method is called when payment has been completed successfully on the PaywithSwwipe checkout. See the next section to see how to hand the callback. - the
onClose
method is called if the user closes the modal without completing payment.
Handling the callback method
The callback method is triggered when the transaction is completed. This is where you verify the transaction status.Helpful Tip
To verify the transaction, you have to set up a route page that you pass the transaction reference to From your server,
you call the PaywithSwwipe verify endpoint to confirm the status of the transaction. You should then return the response to your fronted.
Verify the transaction status
After payment is made, the next step is to confirm the status of the transaction. A transaction can be confirmed by the verify transactions endpoint. To verify the transaction, you must set up a route or page on your server that you pass the reference to. Then from your server, you call the PaywithSwwipe verify endpoint to confirm the status of the transaction, and response is returned to your fronted. The following parameters are needed to confirm if you should deliver value to your customer or not:Parameter | Description |
---|---|
data.status | This indicates if the payment is successful or not |
data.amount | This indicates the price of your product or service in the lower denomination (e.g for NGN 50, you’d see 5000 and so on) |
🚧 Verify Amount When verifying the status of a transaction, you should also verify the amount to ensure it matches the value of the service you are delivering. If the amount doesn’t match, do not deliver value to the customer.
Security Best Practices
Never expose your secret key on the frontend. Always keep it on your server.
- Use HTTPS for all payment pages
- Validate amounts on both frontend and backend
- Store transaction logs for audit purposes
- Implement rate limiting on verification endpoints
- Use webhook endpoints for reliable payment notifications