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, ...)

Arguments

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 GET

Value

nothing. saves attachments to file.

Examples

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) }