Get embed signing link for a signer
Thu, 8 Apr, 2021
You can get the embed sign link for a particular signer in the document with the help this API. The validity of the embed sign link can be specified along with the redirect URL.
Refer the below mentioned code snippet:
C#CURL
// This is an example document id, add your own document id upon usage.
var documentId = "949ebf20-45a8-4a3e-91a9-68e9540e0020";
var embeddedSigningLink = this.DocumentClient.GetEmbeddedSignLink(
documentId: documentId,
signerEmail: "signer1@email.com",
signLinkValidTill: DateTime.UtcNow.AddDays(1),
redirectUrl: "https://myapp.com/sign/redirect");
curl -X GET 'http://api.boldsign.com/v1/document/getEmbeddedSignLink?DocumentId=949ebf20-45a8-4a3e-91a9-68e9540e0020&signerEmail=signer1@email.com&redirectUrl=https://myapp.com/sign/redirect&signLinkValidTill=2021-05-30T18:30:00.000Z' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <authtoken>'