R/nettskjema-attachments.R
nettskjema_save_attachment.Rd
The Nettskjema forms has an option
to upload attachments with forms.
These can be retrieved by this function.
Recommended workflow is to first call
nettskjema_list_attachments
,
and use the output of this to pass along
to the function. This function is called
by nettskjema_get_form_attachments
,
but you can use it to define your own output
file names.
nettskjema_save_attachment(path, output, token_name, ...)
path | Nettskjema API path where the attachment is |
---|---|
output | output file name |
token_name | character. Name to give the token, defaults to 'NETTSKJEMA_API_TOKEN' |
... | arguments passed to |
nothing. saves attachments to file.
if (FALSE) { submission_id <- c(22222, 1232, 21555) attach_dt <- nettskjema_list_attachments(submission_id) nettskjema_save_attachment(path = attach_dt$path, output = attach_dt$standardized) }