Collections/Payins - Cards
We provide the following product/services via API to merchants for collections across channels
Environment Urls
Sandbox: https://devbox.paydestal.com/pay
Prod: https://api.paydestal.com/pay
Virtual Accounts
Card Processing
USSD Processing
Pay Redirect
Card Payment (Local and International) Pay-Easy
Request Sample
curl --request POST \
--url 'https://devbox.paydestal.com/pay/api/v1/card/init?clientId=PYD1zwzyrwabig' \
--header 'Authorization: Bearer {your client secret}' \
--header 'content-type: application/json' \
--data '{
"reference": "99939589999968678",
"amount": 10.00,
"currency": "USD",
"callbackUrl": "{your callback url to redirect on completion}",
"customerName": "Jon Doe",
"customerEmail": "[email protected]",
"customerPhone": "08030000000",
"cardDetails": {
"expiryMonth": "01",
"expiryYear": "39",
"cvv": "100",
"cardNumber": "4508750015741019"
}
}'
Request Body
Name
Type
Description
reference
String
Unique Reference
amount
Double
e.g. 10.55
currency
Enum
Values ["NGN","USD"]
callbackUrl
Url
https://example.com
customerName
String
Name of Customer
customerEmail
customerPhone
Phone
e.g 08039000000
Test Cards
Sample
4012000033330026
4508750015741019
Last updated