Request for POST /1/object/ezsignbulksend/{pkiEzsignbulksendID}/createEzsignbulksendtransmission
| Name | Type | Description | Notes |
|---|---|---|---|
| fki_userlogintype_id | int | The unique ID of the Userlogintype Valid values: | Value |
| fki_secretquestion_id | int | The unique ID of the Secretquestion. 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. | |
| i_ezsignfolder_sendreminderfirstdays | int | The number of days before the the first reminder sending | |
| i_ezsignfolder_sendreminderotherdays | int | The number of days after the first reminder sending | |
| 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. |
from eZmaxApi.models.ezsignbulksend_create_ezsignbulksendtransmission_v2_request import EzsignbulksendCreateEzsignbulksendtransmissionV2Request
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignbulksendCreateEzsignbulksendtransmissionV2Request from a JSON string
ezsignbulksend_create_ezsignbulksendtransmission_v2_request_instance = EzsignbulksendCreateEzsignbulksendtransmissionV2Request.from_json(json)
# print the JSON string representation of the object
print(EzsignbulksendCreateEzsignbulksendtransmissionV2Request.to_json())
# convert the object into a dict
ezsignbulksend_create_ezsignbulksendtransmission_v2_request_dict = ezsignbulksend_create_ezsignbulksendtransmission_v2_request_instance.to_dict()
# create an instance of EzsignbulksendCreateEzsignbulksendtransmissionV2Request from a dict
ezsignbulksend_create_ezsignbulksendtransmission_v2_request_from_dict = EzsignbulksendCreateEzsignbulksendtransmissionV2Request.from_dict(ezsignbulksend_create_ezsignbulksendtransmission_v2_request_dict)