get_apps {polished} | R Documentation |
Polished API - Get App(s)
Description
Polished API - Get App(s)
Usage
get_apps(app_uid = NULL, app_name = NULL, api_key = get_api_key())
Arguments
app_uid |
an optional app uid. |
app_name |
an optional app name. |
api_key |
your Polished API key. Set your polished api key using |
Details
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.
Value
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".
See Also
add_app()
update_app()
delete_app()