Request for POST /2/object/ezsignfoldersignerassociation/createEmbeddedUrl
| Name | Type | Description | Notes |
|---|---|---|---|
| s_return_url | str | The return Url to redirect after the signing is completed Warning Due to the potential for Ezsignsigners to cancel redirection, close their browser post-signing, or spoof the landing URL, it's advisable not to solely depend on the sReturnUrl for accurate status within your integration. Once the Ezsignsigner finishes, they are directed back to your application. Your application can retain transaction state details by either storing data in a cookie or incorporating query parameters in the sReturnUrl. For example: https://www.example.com/sReturnUrl?sSessionID=ABC123 The actual url that will be called will have an extra url parameter appended to give details about the process. The possible values are listed in the table below. For example: https://www.example.com/sReturnUrl?sSessionID=ABC123&eEzsignEvent=CompletedEzsignfolder | Query parameters appended |
| s_iframe_origin | str | This is used to fill the header frame ancestor to allow the application to embed the Ezsign signature page | [optional] |
from eZmaxApi.models.ezsignfoldersignerassociation_create_embedded_url_v2_request import EzsignfoldersignerassociationCreateEmbeddedUrlV2Request
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignfoldersignerassociationCreateEmbeddedUrlV2Request from a JSON string
ezsignfoldersignerassociation_create_embedded_url_v2_request_instance = EzsignfoldersignerassociationCreateEmbeddedUrlV2Request.from_json(json)
# print the JSON string representation of the object
print(EzsignfoldersignerassociationCreateEmbeddedUrlV2Request.to_json())
# convert the object into a dict
ezsignfoldersignerassociation_create_embedded_url_v2_request_dict = ezsignfoldersignerassociation_create_embedded_url_v2_request_instance.to_dict()
# create an instance of EzsignfoldersignerassociationCreateEmbeddedUrlV2Request from a dict
ezsignfoldersignerassociation_create_embedded_url_v2_request_from_dict = EzsignfoldersignerassociationCreateEmbeddedUrlV2Request.from_dict(ezsignfoldersignerassociation_create_embedded_url_v2_request_dict)