vlookup-ondc
v1.0.3
Published
Utility to fetch registry details of an NP using /vlookup API
Downloads
151
Maintainers
Readme
ONDC /vlookup UTILITY
- Install the package.
npm i vlookup-ondc
- Import the vLookUp method in your project.
const vLookUp = require("vlookup-ondc");
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.
Please refer to the GitHub README for the documentation.