Skip to contents

Execute an "Export Arms" API request to fetch the "arms" (number and name) associated with a REDCap project.

Usage

meta_arms(conn)

Arguments

conn

A REDCap API connection object (created with rconn)

Value

A tibble-style data frame with 2 columns:

  • arm_num

  • name

Examples

if (FALSE) { # \dontrun{
conn <- rconn(
  url = "https://redcap.msf.fr/api/",
  token = Sys.getenv("MY_REDCAP_TOKEN")
)

meta_arms(conn)
} # }