List Payment Vendors
This endpoint can be used to fetch the list of supported vendor bank account details where the user will send the funds to when performing a Buy request.
Get all vendors
curl --request GET\
--url https://api.ngnc.online/transactions/v1/vendors\
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'ngnc-sec-key: NGNC_SECRET_KEY' \
RSPONSE-
{
"status": "success",
"message": "Live Vendor Accounts",
"VendorList": [
{
"vendorName": "Okemdinachi Nwaejie",
"vendorNumber": "8180789670",
"vendorBank": "Wema Bank"
},
{
"vendorName": "Christopher Okoye",
"vendorNumber": "8180789246",
"vendorBank": "Wema Bank"
},
],
}
Fetch Vendors
GET
https://api.ngnc.online/transactions/v1/list_vendors
Headers
Name
Type
Description
ngnc-sec-key*
String
Get Key from Bridge App
Last updated