form_entries: Return responses of your form

Description Usage Arguments Value See Also Examples

View source: R/Form.R

Description

If you have 5 submissions to your form, you'll have 5 elements (rows) in the return. This request returns the entries that have been submitted to a specific form. This is the equivalent of viewing your stored entries in the Entry Manager in Wufoo.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
form_entries(
  wufoo_name = auth_name(NULL),
  formIdentifier = NULL,
  systemFields = "true",
  sortID = NULL,
  sortDirection = NULL,
  columnNames = FALSE,
  showRequestURL = FALSE,
  debugConnection = 0L,
  domain = "wufoo.com",
  pageStart = 0,
  pageSize = 25
)

Arguments

wufoo_name

- User's Name. Default: auth_name

formIdentifier

- must be replaced with your form's URL or hash.

systemFields

- return system fields. Default: true

sortID

- sort on a single ID, as retrieved from the fields_info.

sortDirection

- choose to sort your entries ASC (lowest to highest) or DESC (highest to lowest).

columnNames

- How should be column names be called. Either "Field1", "Field2" etc. or "First Name", "Last Name" (tries to make best guess). Default to the second option.

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

pageStart

- the page number you'd like to start from. Defaults to 0.

pageSize

- the number of entries returned in your page. Defaults to 25; Max = 100.

Value

https://wufoo.github.io/docs/#form-entries

See Also

http://help.wufoo.com/articles/en_US/SurveyMonkeyArticleType/The-Entries-GET-API

Examples

1
2
3
4
5
## Not run: 
form_entries(formIdentifier = "z5kqx7h1gtvg4g")
form_entries(formIdentifier = "z5kqx7h1gtvg4g", systemFields = "false", showRequestURL = TRUE)

## End(Not run)

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