R/getDatasets.R

Defines functions getDatasets

Documented in getDatasets

#' @title Get a table of datasets (V2)
#' @description Returns a table with meta-data about all the tables. This function uses the V2 version of the API.
#' @param apiKey You can find the API key in the settings after logging into Numetric
#' @export
getDatasets <- function(apiKey){
  r <- GET("https://api.numetric.com/v2/dataset",
           add_headers("Authorization" = apiKey,
                       "Content-Type" = "application/json"),
           verbose()
  )
  response <- httr::content(r, as = "text") # Saves what was returned as raw text with all the encodings
  response <- fromJSON(response) # Converts what was returned to a dataframe
}
RonGuymon/numetricAPI documentation built on May 6, 2019, 10:12 a.m.