form_entriesFromCSV: Return responses of your form, from CSV format

Description Usage Arguments Examples

View source: R/Form.R

Description

This function imports your report csv file as a data frame from the report csv export url (example url below). The report must be public and not protected. To verify your CSV url, open the browser, select your report, then "Export" in "Commas (.csv)". Please note that the name of your report will be in lowercase with spaces replaced with hyphens. For example, the report titled "My Example Report" will be "my-example-report" in the URL as shown below. E.g. https://YourName.wufoo.com/export/reports/manager/NameOfYourReport.csv

Usage

1
2
3
4
5
6
7
form_entriesFromCSV(
  wufoo_name = auth_name(NULL),
  reportName = NULL,
  showRequestURL = FALSE,
  debugConnection = 0L,
  domain = "wufoo.com"
)

Arguments

wufoo_name

- User's Name. Default: auth_name

reportName

- the name of your report as displayed in the csv export URL (which is in lowercase with hyphens replacing spaces of your report name). The report should be also public.

showRequestURL

- use only for DEBUG purposes

debugConnection

- samilar as above. Either "0L" (false; default) or "1L"

domain

- for whatever reason domain's ccTLD may change. With this parameter you can change default wufoo.com to another one such as wufoo.eu

Examples

1
2
3
4
5
6
## Not run: 
options(Wufoo_Name = "johnmalc", Wufoo_API = "S6VI-I8UA-BY11-TDHO")
df_csv <- form_entriesFromCSV(reportName = "untitled-report", showRequestURL = F)
View(df_csv)

## End(Not run)

dmpe/WufooR documentation built on April 17, 2020, 2:12 a.m.