- Clone the repository, navigate to vlookup-ondc and install the dependencies.
cd vlookup-ondc-nodejs
npm i
- Import the vLookUp method in your project.
const vLookUp = require("./index");
vLookUp({
senderSubscriberId: "", //subscriber_id of sender
privateKey: "", //private key of sender in base64 encoding
//search parameters of the NP whose details need to be fetched from registry
domain: "nic2004:52110",
subscriberId: "buyerApp.com",
country: "IND",
type: "buyerApp", //buyerApp, sellerApp, gateway
city: "std:080",
env: "preprod", //staging,preprod,prod
}).then((res) => console.log(res));
- The output will include the registry details of the NP.