Hey, recently I created a document generator using google appsscript, to make contracts to my clients, is there a way to share a page for a specific client to sign a specific document?
Do they have to log in to sign? Based on your wording, I expect no?
Yeah I dont need them to log in, just add the signature and my script will add it automatically in the document.
@ThinhDinh Any idea?
You can create a new app that links to the same tables under the hood. Share the public link with your users, and allow them to sign with a signature component.
I want to add 1 more button, which will give an overlay screen with a QR code, and if scanned, takes him to a page containing the same PDF from the row, cause it contains all his info, so he can read the contract before signing it, and after signing it fills the signature in the row. My script will add it to the contract, and it will give the client a copy as well. Sorry for my English..
But how does the user get that QR code? What is the real-life user experience?
The client comes to the office, I fill his info on my app, after that I show him the QR code, he sees the contract and has the ability to add his signature, thank you for your patience <3
You would still have to add a public app if I understand your situation right, unless that person signs in to the same app you’re using.
@ThinhDinh in the new app how to make sure that he signs the same item(row) in my original app?
In the public app, you have a deep link to the same row that should be constructable using the rowID at the end of it.
Construct that public URL inside your private app, using a template column with the rowID at the end, and the QR should read from that template.
Thank you very much