form_entries function

Return responses of your form

Return responses of your form

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.

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.

Returns

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

Examples

## Not run: form_entries(formIdentifier = "z5kqx7h1gtvg4g") form_entries(formIdentifier = "z5kqx7h1gtvg4g", systemFields = "false", showRequestURL = TRUE) ## End(Not run)

See Also

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

  • Maintainer: John Malc
  • License: Apache License 2.0
  • Last published: 2020-04-11