Get Payment Wallets

This endpoint can be used to fetch the list of supported wallets

πŸ“˜

Use this endpoint to get all Banks.

GET api.ngnc.online/transactions/v1/list_payment_wallets

const options = {
  method: 'GET',
  headers: {
    accept: 'application/json',
    'ngnc-sec-key': 'Bridge_Secret_Key',
    'content-type': 'application/json'
  },
};

fetch('https://api.ngnc.online/transactions/v1/live/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": "Bridge_Secret_Key",
    "content-type": "application/json"
}

response = requests.post(url, headers=headers)

print(response.text)

API Reference

You can view the API reference for working with Payment wallet