Polished API - Get App(s)
get_apps(app_uid = NULL, app_name = NULL, api_key = get_api_key())
an object of class polished_api_res
. When successful, the content
of the object is a
tibble of app(s) with the following columns:
uid
app_name
app_url
created_at
modified_at
In the case of an error, the content is a list with 1 element named "error".
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.
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.
add_app()
update_app()
delete_app()