You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content=f"This email servers to notify you that a form was unsigned at {config.DOMAIN} by the user registered at this email address. The form's document ID is '{document_id}'. If you believe this was a mistake, or did not intend to sign this form, please contact your system administrator.",
1191
+
to_address=user.email,
1192
+
)
1193
+
1194
+
# Write this query to the TransactionLog
1195
+
ifconfig.COLLECT_USAGE_STATISTICS:
1196
+
1197
+
endpoint=request.url.path
1198
+
remote_addr=request.client.host
1199
+
1200
+
background_tasks.add_task(
1201
+
write_api_call_to_transaction_log,
1202
+
api_key=key,
1203
+
endpoint=endpoint,
1204
+
remote_addr=remote_addr,
1205
+
query_params={},
1206
+
)
1207
+
1208
+
return {
1209
+
"message": "Form successfully unsigned",
1210
+
"document_id": document_id,
1211
+
}
1212
+
1213
+
1121
1214
# Approve form
1122
1215
# This is a metadata-only field. It should not impact the data, just the metadata - namely, to afix
1123
1216
# an approval - in the format of a digital signature - to the form.
0 commit comments