Method: POST
URL: https://pay.mindswavepay.com/v1/billing/payment/init
{
"AppId": "{{privKey}}",
"TransactionId": "{{transactionId}}",
"TotalAmount": {{total}},
"Hash": "{{digest}}",
"Description": "Hello payment",
"Webhook": "https://httpdump.akouendy.com/callback",
"ReturnUrl": "https://www.akouendy.com",
"Email": "toto@nama.com",
"FullName": "Toto Nama",
"SuccessMsg": "Merci pour votre paiement",
"FailedMsg": "Paiement échoué"
}
Before creating a payment, it is necessary to generate a hash using the private key. The formula is hash is:
SHA512(cléPrivé + "|" + transactionId + "|" + total + "|akouna_matata")
At the end of the payment, the customer is redirected to the url indicated in ReturnUrl enriched as follows: ReturnUrl?provider=[platform-payment]&status=[status]&token=[token]&transactionId=[transactionId].
When ReturnUrl is not populated, the client is redirected to the Akouendy status page.
“Pre-request” script to calculate the hash
POST: https://pay.mindswavepay.com/v1/billing/payment/init
This script executed before the request creates the hash and then adds it to a variable named “digest” in the collection.
The POST request in postman
POST: https://pay.mindswavepy.com/v1/billing/payment/init
{
"Code": "00",
"Text": "Payment in progress",
"Status": "INIT",
"Token": "7e24db2d-f11d-4315-925d-b14185a30342",
"PaymentUrl": "https://pay.akouendy.com/v1/product/buy/7e24db2d-f11d-4315-925d-b14185a30342?country=sen"
}
Webhook received after payment
When a payment is made, a POST request is sent with the url populated in the Webhook field of the request or in the Webhook field of the application used to initiate the request.
{
"TransactionID": "7e24db2d-f11d-4315-925d-b14185a30342",
"Status": "SUCCESS",
"Hash": "298348dee3b5a28a5042d00f599918ae7811edf8fb2ad29fa32bcb00a7c237",
}
The formula for the validation hash of the received webhook is:
SHA512(Token + "|" + TransactionID + "|" + paymentStatus)
Search for a payment
Method: GET
URL: https://pay.mindswavepay.com/v1/payment/{paymenId}/{applicationId}
Description of the parameters in the url¶
Example of a search and response query:
Knowing:
curl --location 'https://pay.mindswavepay.com/v1/payment/7e24db2d-f11d-4315-925d-b14185a30342/2d2a358b-6f71-467b-a082-9f8777445be7'
{
"Code": "00",
"PaymentId": "7e24db2d-f11d-4315-925d-b14185a30342",
"Status": "INIT",
"MerchantData": {
"Env": "",
"Fees": 0,
"Hash": "17cfeb4a58e715822a231ea64f9cd7a2aad2573761b57371ce0bd877c0cdeefb2706c998cccbd9b47bf6924165c2501b201717a0647b43ec11204278fcb66be5",
"Rate": 0,
"AppId": "b695ff5a-8a41-463b-ac3b-6c4ebbd01570",
"Email": "toto@nama.com",
"Webhook": "https://httpdump.akouendy.com/callback",
"AppToken": "",
"ClientId": "",
"FullName": "Toto Nama",
"FailedMsg": "Paiement échoué",
"ReturnUrl": "https://www.akouendy.com",
"SuccessMsg": "Merci pour votre paiement",
"Description": "Hello payment",
"TotalAmount": 10,
"NotifChannel": "",
"TransactionId": "d6384f1b-cdef-4b32-96ec-83fa59ca0e7f",
"MerchantCreated": false,
"TotalPayedAmount": 10
}
}
Download the Postman Collection
Click here to download the postman collection.