flutterwave bvn api

Solutions on MaxInterview for flutterwave bvn api by the best coders in the world

showing results for - "flutterwave bvn api"
Andrea
07 Nov 2019
1var request = require('request');
2var options = {
3  'method': 'POST',
4  'url': 'https://rave-api-v2.herokuapp.com/v3/kyc/bvns/12345678019',
5  'headers': {
6    'Authorization': 'Bearer {{SEC_KEY}}'
7  }
8};
9request(options, function (error, response) { 
10  if (error) throw new Error(error);
11  console.log(response.body);
12});
13