reports_list {civis} | R Documentation |
List Reports
Description
List Reports
Usage
reports_list(
type = NULL,
template_id = NULL,
author = NULL,
hidden = NULL,
archived = NULL,
limit = NULL,
page_num = NULL,
order = NULL,
order_dir = NULL
)
Arguments
type |
string optional. If specified, return report of these types. It accepts a comma-separated list, possible values are 'tableau' or 'other'. |
template_id |
integer optional. If specified, return reports using the provided Template. |
author |
string optional. If specified, return items from any of these authors. It accepts a comma-separated list of user IDs. |
boolean optional. If specified to be true, returns hidden items. Defaults to false, returning non-hidden items. | |
archived |
string optional. The archival status of the requested item(s). |
limit |
integer optional. Number of results to return. Defaults to 20. Maximum allowed is 50. |
page_num |
integer optional. Page number of the results to return. Defaults to the first page, 1. |
order |
string optional. The field on which to order the result set. Defaults to updated_at. Must be one of: updated_at, name, created_at. |
order_dir |
string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to desc. |
Value
An array containing the following fields:
id |
integer, The ID of this report. |
name |
string, The name of the report. |
user |
list, A list containing the following elements:
|
createdAt |
string, |
updatedAt |
string, |
projects |
array, An array containing the following fields:
|
state |
string, The status of the report's last run. |
finishedAt |
string, The time that the report's last run finished. |
vizUpdatedAt |
string, The time that the report's visualization was last updated. |
script |
list, A list containing the following elements:
|
jobPath |
string, The link to details of the job that backs this report. |
tableauId |
integer, |
type |
string, |
templateId |
integer, The ID of the template used for this report. |
authThumbnailUrl |
string, URL for a thumbnail of the report. |
lastRun |
list, A list containing the following elements:
|
archived |
string, The archival status of the requested item(s). |