We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8ccb25 + abd91e6 commit 1bb40a2Copy full SHA for 1bb40a2
eversign/document.py
@@ -168,6 +168,7 @@ class DocumentModel(Model):
168
document_hash = StringType()
169
template_id = StringType()
170
requester_email = StringType()
171
+ embedded_claim_url = StringType()
172
title = StringType()
173
subject = StringType()
174
message = StringType()
examples/create_document.py
@@ -20,6 +20,10 @@
20
signer.email = config.signer_email
21
22
document.sandbox = True
23
+
24
+# To get embedded_claim_url in response, document has to be created as a draft
25
+# document.is_draft = True
26
27
document.add_file(file)
28
document.add_signer(signer)
29
document.add_recipient(recipient)
0 commit comments