Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 3.91 KB

EzsignbulksendCreateEzsignbulksendtransmissionV1Request.md

File metadata and controls

36 lines (27 loc) · 3.91 KB

EzsignbulksendCreateEzsignbulksendtransmissionV1Request

Request for POST /1/object/ezsignbulksend/{pkiEzsignbulksendID}/createEzsignbulksendtransmission

Properties

Name Type Description Notes
fki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
fki_ezsigntsarequirement_id int The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values: Value
s_ezsignbulksendtransmission_description str The description of the Ezsignbulksendtransmission
dt_ezsigndocument_duedate str The maximum date and time at which the Ezsigndocument can be signed.
e_ezsignfolder_sendreminderfrequency FieldEEzsignfolderSendreminderfrequency
t_extra_message str A custom text message that will be added to the email sent.
s_csv_base64 bytearray The Base64 encoded binary content of the CSV file.

Example

from eZmaxApi.models.ezsignbulksend_create_ezsignbulksendtransmission_v1_request import EzsignbulksendCreateEzsignbulksendtransmissionV1Request

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

# convert the object into a dict
ezsignbulksend_create_ezsignbulksendtransmission_v1_request_dict = ezsignbulksend_create_ezsignbulksendtransmission_v1_request_instance.to_dict()
# create an instance of EzsignbulksendCreateEzsignbulksendtransmissionV1Request from a dict
ezsignbulksend_create_ezsignbulksendtransmission_v1_request_form_dict = ezsignbulksend_create_ezsignbulksendtransmission_v1_request.from_dict(ezsignbulksend_create_ezsignbulksendtransmission_v1_request_dict)

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