R/deleteDashboard.R

Defines functions deleteDashboard

Documented in deleteDashboard

#' @title Deletes a dashboard (V2)
#' @description Deletes a dashboard using the API.
#'
#' This function uses the V2 version of the API.
#' @param apiKey You can find the API key in the settings after logging into Numetric
#' @param dashboardId The dashboard ID, in quotes. You can find the dashboard ID by either (1) using the getDashboards function, or (2) navigating to the dashboard, and then selecting the string after the last forward slash.
#' @export
deleteDashboard <- function(apiKey, dashboardId){
  r <- DELETE(paste0("https://api.numetric.com/v2/dashboard/", dashboardId),
              add_headers("Authorization" = apiKey),
              verbose()
  )
}
RonGuymon/numetricAPI documentation built on May 6, 2019, 10:12 a.m.