| GetForms | R Documentation |
Retrieve information about all forms in the account.
GetForms(
token,
status = NULL,
name = NULL,
page = 1,
page_size = 100,
all_pages = TRUE
)
token |
String access token. |
status |
Optional filter. State of the form: |
name |
Optional filter. Returns forms whose name contains this string (partial match, case-insensitive). |
page |
Integer. Starting page when |
page_size |
Integer. Number of records per API request (max 500). Default: 100. |
all_pages |
Logical. If |
To get more details about the fields provided by the result, please visit the API documentation.
A data frame with columns: id, name,
description, status, category, version,
public_answers. Returns NULL with a warning if no forms are
found.
GetForms("cizio7xeohwgc8k4g4koo008kkoocwg")
GetForms("cizio7xeohwgc8k4g4koo008kkoocwg", status = "enabled")
GetForms("cizio7xeohwgc8k4g4koo008kkoocwg", name = "Iris")
GetForms("cizio7xeohwgc8k4g4koo008kkoocwg", page_size = 3, all_pages = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.