DoKycRequest

Use this sdk after calling thedokycrequest 

 <script type="text/javascript" src="https://app.digio.in/sdk/v10/digio.js"></script>
    <script>
        function showkyc(RequestId, Mobile, tokenid, reff) {
            var options = {
                environment: "production",
                Is_redirection_approach: true,
                    redirect_url: "https://app.digio.in/#/gateway/login/" + RequestId + "/" + reff + "/" + Mobile + "?redirect_url=https://app.pinwallet.in/api/partnerkyc/callback",
                callback: function (response) {
                    if (response.hasOwnProperty("error_code")) {
                        return console.log("error occurred in process");
                    }
                    console.log("Signing completed successfully");
                },
                logo: "https://app.pinwallet.in/assets/images/logo/pinwallet.png",
                theme: {
                    primaryColor: "#AB3498",
                    secondaryColor: "#000000"
                }
            }
            var digio = new Digio(options); //options is the digio options constructor object.
            digio.init();
            var requestId = RequestId;
            var identifier = Mobile;
            var token_id = tokenid;
            digio.submit(requestId, identifier, token_id);
            //digio.cancel();

        }
}
</script>

S.NNameTypeDescriptionMandatory (M) , Optional (O)Provided by Pinwallet (Y/N)
1.AgentMobileStringValid Wallet Mobile NumberMN
2.AgentNameStringValid Wallet Holder NameMN
3.LatitudeStringCurrent location latitudeMN
4.LongitudeStringCurrent location longitudeMN
5.TransactionIdStringUnique Reference numberMN
Language
Click Try It! to start a request and see the response here!