R/datastore_interactions.R
check_ref_exists.Rd
given a DataStore reference ID, the function will hit the DataStore API to determine whether the reference exists. If it cannot contact DataStore, it will stop with an error that states the connection failed.
check_ref_exists(reference_id, secure = TRUE, dev = FALSE)
Integer. A 7-digit number indicating the datastore reference to be queried.
Logical. Defaults to TRUE, indicating that the user is logged on to the NPS VPN (or is accessing the resource from an NPS office). Can be set to FALSE for non-NPS users. If `secure` is set to FALSE, `dev` is automatically set to FALSE.
Logical. Defaults to FALSE, indicating that the user wishes to work with the production version of DataStore. Can be set to TRUE if the user wants to work with the development environment on DataStore. Setting dev = TRUE will only work if the user has the appropriate permissions. Requires secure = TRUE.
logical. TRUE means the reference exists, false means it does not exist.
if (FALSE) { # \dontrun{
check_ref_exists(1234567)
check_ref_exists(1234567, secure = FALSE)
} # }