form_entries {WufooR} | R Documentation |
Return responses of your form
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
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: |
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 |
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 |
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
## Not run:
form_entries(formIdentifier = "z5kqx7h1gtvg4g")
form_entries(formIdentifier = "z5kqx7h1gtvg4g", systemFields = "false", showRequestURL = TRUE)
## End(Not run)