List all available versions of a KoboToolbox API asset
Source:R/kobo_asset.R
kobo_asset_version_list.RdList all available versions of a KoboToolbox API asset and their metadata.
Value
A data.frame containing the list of all the versions
of a given KoboToolbox API asset with the following metadata:
uidthe asset version unique identifier.urlthe URL of the asset version.deployedwhether or not the asset version is deployeddate_modifiedwhen the asset version was last modified
a data.frame
Examples
if (FALSE) { # \dontrun{
kobo_setup() # setup using your url and token
uid <- "a9cwEQcbWqWzA5hzkjRUWi" # pick a valid uid
asset <- kobo_asset(uid)
kobo_asset_version_list(asset)
} # }