Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 4.4 KB

EzsignsignerRequest.md

File metadata and controls

34 lines (25 loc) · 4.4 KB

EzsignsignerRequest

An Ezsignsigner Object

Properties

Name Type Description Notes
fki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
fki_taxassignment_id int The unique ID of the Taxassignment. Valid values: Value
fki_secretquestion_id int The unique ID of the Secretquestion. Valid values: Value
e_ezsignsigner_logintype str The method the Ezsignsigner will authenticate to the signing platform. 1. Password means the Ezsignsigner will receive a secure link by email. 2. PasswordPhone means the Ezsignsigner will receive a secure link by email and will need to authenticate using SMS or Phone call. Additional fee applies. 3. PasswordQuestion means the Ezsignsigner will receive a secure link by email and will need to authenticate using a predefined question and answer. 4. InPersonPhone means the Ezsignsigner will only be able to sign "In-Person" and will need to authenticate using SMS or Phone call. No email will be sent for invitation to sign. Additional fee applies. 5. InPerson means the Ezsignsigner will only be able to sign "In-Person" and there won't be any authentication. No email will be sent for invitation to sign. Make sure you evaluate the risk of signature denial and at minimum, we recommend you use a handwritten signature type. [optional]
s_ezsignsigner_secretanswer str The predefined answer to the secret question the Ezsignsigner will need to provide to successfully authenticate. [optional]

Example

from eZmaxApi.models.ezsignsigner_request import EzsignsignerRequest

# TODO update the JSON string below
json = "{}"
# create an instance of EzsignsignerRequest from a JSON string
ezsignsigner_request_instance = EzsignsignerRequest.from_json(json)
# print the JSON string representation of the object
print(EzsignsignerRequest.to_json())

# convert the object into a dict
ezsignsigner_request_dict = ezsignsigner_request_instance.to_dict()
# create an instance of EzsignsignerRequest from a dict
ezsignsigner_request_form_dict = ezsignsigner_request.from_dict(ezsignsigner_request_dict)

[Back to Model list] [Back to API list] [Back to README]