Retrieve Pin Bundles
POST https://payments.baxipay.com.ng/api/baxipay/services/epin/bundles
Parameters
Header
Baxi-date string Date in RFC format.
Authorization string See authentication page.
Body
service_type string This is the service provider code for the selected service
(glo, mtn, airtel, 9mobile, spectranet, etc.)
Responses
-
200 data: This is an array of objects.
amount: This is the amount of the epin bundle.
available: The maximum quantity available you can purchase.
description: This is the description of an object item.Sample response for glo service_type
{
"status": "success",
"message": "Successful",
"code": 200,
"data": [
{
"amount": 50,
"available": 1,
"description": "₦50 Airtime"
},
{
"amount": 100,
"available": 1,
"description": "₦100 Airtime"
},
{
"amount": 200,
"available": 1,
"description": "₦200 Airtime"
},
{
"amount": 300,
"available": 1,
"description": "₦300 Airtime"
},
{
"amount": 500,
"available": 1,
"description": "₦500 Airtime"
},
{
"amount": 1000,
"available": 1,
"description": "₦1000 Airtime"
},
{
"amount": 5000,
"available": 1,
"description": "₦5000 Airtime"
}
]
}
Updated 5 months ago