docu_download {docuSignr} | R Documentation |
Download Document from DocuSign
Description
Download Document from DocuSign
Usage
docu_download(file, username = Sys.getenv("docuSign_username"),
password = Sys.getenv("docuSign_password"),
integrator_key = Sys.getenv("docuSign_integrator_key"), base_url,
envelope_id)
Arguments
file |
a character string naming a file |
username |
docuSign username |
password |
docuSign password |
integrator_key |
docusign integratorKey |
base_url |
base_url |
envelope_id |
id of envelope |
Examples
## Not run:
login <- docu_login(demo = TRUE)
envelopes <- docu_list_envelopes(base_url = login$baseUrl[1], from_date = "2017/1/1")
envelope_id <- envelopes[envelopes$status == "completed","envelopeId"][1]
file <- tempfile()
document <- docu_download(file, base_url = login[1, 3],
envelope_id = envelope_id)
## End(Not run)
[Package docuSignr version 0.0.3 Index]