List Payment Wallets
This endpoint can be used to fetch the list of supported wallets
Get all Wallets
curl --request GET\
--url https://api.ngnc.online/transactions/v1/list_payment_wallets \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'ngnc-sec-key: NGNC_SECRET_KEY' \const options = {
method: 'GET',
headers: {
accept: 'application/json',
'ngnc-sec-key': 'NGNC_SECRET_KEY',
'content-type': 'application/json'
},
};
fetch('https://api.ngnc.online/transactions/v1/list_payment_wallets', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));import requests
url = "https://api.ngnc.online/transactions/v1/list_payment_wallets"
headers = {
"accept": "application/json",
"ngnc-sec-key": "NGNC_SECRET_KEY",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)Fetch Wallets
GET https://api.ngnc.online/transactions/v1/list_payment_wallets
Headers
Name
Type
Description
ngnc-sec-key*
String
Get Key from Bridge App
Last updated