R/rb_list_calls_per_day.R

Defines functions rb_list_calls_per_day

Documented in rb_list_calls_per_day

#' List of calls per day
#'
#' List of incoming and outgoing calls today
#' @export
rb_list_calls_per_day <- function() {
  parsed <- send_api_request("stats/list-of-calls-per-day")
  tb <- to_tibble(parsed$callDetails)
  return(tb)
}
DenUsenko/rbinotel documentation built on Oct. 17, 2020, 8:54 p.m.