A full documentation and getting started guide can be found Here
npm i verifiedly
const verifiedly = require('verifiedly')('API_KEY_HERE')A verification session is used to invoke a verifiedly UI element. Whether on a browser or in a mobile application.
A successful session request includes the following;
A status basically informs you of the status of the request.
A session is what is used to invoke a verification session in whatever environment you choose. Without a session, any request to invoke the verifiedly UI will fail.
A link is also provided incase you want to pass that to your frontend, to allow your user confinently click on a verification button.
verifiedly.getKycSession().then(response => {
console.log(response)
}) .catch(error => {
console.log(error)
})verifiedly.getKybSession().then(response => {
console.log(response)
}) .catch(error => {
console.log(error)
})