Description Usage Arguments Value Examples
List Surveys https://api.qualtrics.com/guides/reference/surveys.json/paths/~1surveys/get
1 2 3 4 5 6 | listSurveys(
yourdatacenterid = Sys.getenv("QUALTRICS_DATACENTERID"),
yourapitoken = Sys.getenv("QSI_TOKEN"),
offset = 0,
responseOnly = FALSE
)
|
yourdatacenterid |
Set in .Renviron |
yourapitoken |
Set in .Renviron |
offset |
paging, defaults to 0 (first page only) |
responseOnly |
Return response() object only? Defaults to FALSE. |
Response or data.frame
1 2 3 4 5 6 7 8 9 | ## Not run:
a <- listSurveys()
listSurveys(responseOnly=TRUE)
a
dim(a)
b <- lapply(seq(0,1000,100), function(x) { listSurveys(offset=x) }) %>% bind_rows
dim(b)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.