View source: R/project_create.R
project_create | R Documentation |
project_create(
name,
url = get_default_url(),
un = get_default_un(),
pw = get_default_pw()
)
name |
The desired name of the project. Can contain whitespace. |
url |
The ODK Central base URL without trailing slash. Default: Set default See |
un |
The ODK Central username (an email address).
Default: |
pw |
The ODK Central password.
Default: |
A tibble with one row per project and all project metadata as columns as per ODK Central API docs.
https://docs.getodk.org/central-api-project-management/#creating-a-project
Other project-management:
project_detail()
,
project_list()
## Not run:
# See vignette("setup") for setup and authentication options
# ruODK::ru_setup(svc = "....svc", un = "me@email.com", pw = "...")
p <- project_create("Test Project")
knitr::kable(p)
# project_create returns a tibble
class(p)
# > "tbl_df" "tbl" "data.frame"
# columns are project metadata
names(p)
# > "id" "name" "archived"
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.