Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 2.3 KB

EzsignfolderRequest.md

File metadata and controls

30 lines (24 loc) · 2.3 KB

EzmaxApi::EzsignfolderRequest

Properties

Name Type Description Notes
pki_ezsignfolder_id Integer The unique ID of the Ezsignfolder [optional]
fki_ezsignfoldertype_id Integer The unique ID of the Ezsignfoldertype.
fki_ezsigntsarequirement_id Integer 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_ezsignfolder_description String The description of the Ezsignfolder
t_ezsignfolder_note String Note about the Ezsignfolder [optional]
e_ezsignfolder_sendreminderfrequency FieldEEzsignfolderSendreminderfrequency
s_ezsignfolder_externalid String This field can be used to store an External ID from the client's system. Anything can be stored in this field, it will never be evaluated by the eZmax system and will be returned AS-IS. To store multiple values, consider using a JSON formatted structure, a URL encoded string, a CSV or any other custom format. [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::EzsignfolderRequest.new(
  pki_ezsignfolder_id: 33,
  fki_ezsignfoldertype_id: 5,
  fki_ezsigntsarequirement_id: 1,
  s_ezsignfolder_description: Test eZsign Folder,
  t_ezsignfolder_note: This is a note,
  e_ezsignfolder_sendreminderfrequency: null,
  s_ezsignfolder_externalid: {"ID": 1234, "TAGS": ["tag1", "tag2", "tag3"]}
)