Polished API - Get App(s)
get_apps(
  app_uid = NULL,
  app_name = NULL,
  api_key = getOption("polished")$api_key
)an optional app uid.
an optional app name.
your Polished API key.  Set your polished api key using set_api_key()
so that you do not need to supply this argument with each function call.
an object of class polished_api_res.  The "content" of the object is a
tibble of app(s) with the following columns:
uid
app_name
app_url
created_at
modified_at
If both the app_uid and app_name are NULL, then all the
apps in your account will be returned.  If either app_uid or app_name are not
NULL, then a single app will be returned (assuming the app exists).  If both the
app_uid and app_name are provided, then the app_uid will be used,
and the app_name will be ignored.  If the app does not exists, a zero row tibble
will be returned.