Hi community,
I am using the Python SDK for the eSignature functionality. I am trying to generate links to preview my envelopes before sending them to signers. I am using the following method:
envelopes_api.create_envelope_recipient_preview(
account_id,
envelope_id,
recipient_preview_request={
"returnUrl": return_absolute_path,
"recipientId": recipient_id,
},
)
I see that the "returnUrl" is a mandatory parameter. I would like to know if I there are alternatives to this parameter, such as providing raw HTML instead.
Thanks