docu_envelope: Create document for particular instance to be signed

Description Usage Arguments Examples

Description

Does envelope stuff

Usage

1
2
3
4
5
docu_envelope(username = Sys.getenv("docuSign_username"),
  password = Sys.getenv("docuSign_password"),
  integrator_key = Sys.getenv("docuSign_integrator_key"), account_id,
  status = "sent", base_url, template_id, template_roles, email_subject,
  email_blurb)

Arguments

username

docuSign username

password

docuSign password

integrator_key

docusign integratorKey

account_id

docuSign accountId

status

envelope status

base_url

docuSign baseURL

template_id

docuSign templateId

template_roles

list of parameters passed to template

email_subject

docuSign emailSubject

email_blurb

docuSign emailBlurb

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
# assuming env variables are properly set up
login <- docu_login()
template <- docu_templates(base_url = login[1, "baseUrl"])
(env <- docu_envelope(username = Sys.getenv("docuSign_username"),
 password = Sys.getenv("docuSign_password"),
 integrator_key = Sys.getenv("docuSign_integrator_key"),
 account_id = login[1, "accountId"], base_url = login[1, "baseUrl"],
 template_id = template$templateId,
 template_roles = list(name = "Name", email = "email@example.com",
                      roleName = "Role", clientUserId = "1"),
 email_subject = "Subject", email_blurb = "Body"
 ))
 
## End(Not run)

CannaData/docuSignr documentation built on July 4, 2019, 2:49 p.m.