You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 17, 2023. It is now read-only.
# Creates an embedded BulkSendJob based off of the Template specified with the template_id parameter.
332
+
# @option opts [Boolean] test_mode Indicates if this is a test BulkSendJob, its SignatureRequests will not be legally binding if set to 1. Defaults to 0. (optional)
333
+
# @option opts [String] template_id The Template ID to use when creating the SignatureRequest.
334
+
# * Use template_ids[%i%] if using multiple templates, replacing %i% with an integer to indicate the order of the Templates
335
+
# @option opts [String] client_id The API App Client ID associated with this embedded BulkSendJob.
336
+
# @option opts [String] title Assigns a title to the SignatureRequest. (optional)
337
+
# @option opts [String] subject Sets the subject in the email sent to the signer(s). (optional)
338
+
# @option opts [String] message Sets the message in the email sent to the signer(s). (optional)
339
+
# @option opts [String] signing_redirect_url Redirects the signer(s) to this URL after completing the SignatureRequest. (optional)
340
+
# @option opts [String] signer_file Uploads a CSV file defining values and options for signer fields. Required if signer_list is not used.
341
+
# @option opts [String] signer_list A JSON array defining values and options for signer fields. Required if signer_file is not used.
342
+
# @option opts [Array<Hash>] custom_fields An array of custom merge fields, representing those present on the Template. (optional)
343
+
# * name (String) Custom field name or "Field Label"
344
+
# * value (String) The value of the field. This data will appear on the SignatureRequest.
345
+
# * editor (String) The signer name indicated on the Text Tag or form_fields_per_document that can edit the value of the field. (optional)
346
+
# * required (Boolean) Determines if the field is required or not. (optional)
347
+
# @option opts [Array<Hash>] ccs The individual(s) to be CC'd on the SignatureRequest. Required when a CC role exists for the Template.
348
+
# * role (String) The CC role indicated on the Template. Note that the role name is case sensitive.
349
+
# * email_address (String) CC Recipient's email address
350
+
# @option opts [Hash] metadata Key-value data attached to the SignatureRequest. (optional)
351
+
# @option opts [String] client_id The API App Client ID associated with the SignatureRequest. (optional)
352
+
#
353
+
# @return [HelloSign::Resource::BulkSendJob] a BulkSendJob
# If form_fields_per_document is not specified or use_text_tags is not enabled, a signature page will be affixed at the end.
397
471
# See our Embedded Signing Walkthrough for more information on Embedded Signing: https://app.hellosign.com/api/embeddedSigningWalkthrough.
398
472
# @option opts [Boolean] test_mode Indicates if this is a test SignatureRequest, it will not be legally binding if set to 1. Defaults to 0. (optional)
399
-
# @option opts [String] client_id The API App Client ID associated with the this embedded SignatureRequest.
473
+
# @option opts [String] client_id The API App Client ID associated with this embedded SignatureRequest.
400
474
# @option opts [Array<String>] files Use files to indicate the uploaded file(s) to send for signature. Currently we only support use of either the files parameter or file_urls parameter, not both.
401
475
# @option opts [Array<String>] file_urls Use file_urls to have HelloSign download the file(s) to send for signature. Currently we only support use of either the files parameter or file_urls parameter, not both.
402
476
# @option opts [String] title Assigns a title to the SignatureRequest. (optional)
0 commit comments