R/get_me.R

Defines functions get_me

Documented in get_me

#' Retrieve your own account information.
#'
#' Returns alias, email and language.
#' @inheritParams get_api
#' @export
get_me = function(api = NULL) {
  url = "https://api.typeform.com/me"
  content = get_response(api = api, url)
  unlist(content)
}

Try the rtypeform package in your browser

Any scripts or data that you put into this service are public.

rtypeform documentation built on Aug. 31, 2020, 5:09 p.m.