Skip to content

Paginated Report

Warning

The functions are not fully tested yet. Use with caution. Please report any issues to the GitHub repository.

paginated_report_list

paginated_report_list(continuation_token: str = None, preview: bool = True) -> requests.Response

List paginated reports for a workspace.

Parameters:

Name Type Description Default
continuation_token str | None

A token for retrieving the next page of results.

None
preview bool

Whether to preview the request. You will be asked to confirm the request before it is executed. Defaults to True.

True

Returns:

Type Description
Response

The response from the request.

paginated_report_update

paginated_report_update(paginated_report_id: str, display_name: str = None, description: str = None, preview: bool = True) -> requests.Response

Update a paginated report.

Parameters:

Name Type Description Default
paginated_report_id str

The id of the paginated report to update.

required
display_name str | None

The display name of the paginated report.

None
description str | None

The description of the paginated report.

None
preview bool

Whether to preview the request. You will be asked to confirm the request before it is executed. Defaults to True.

True

Returns:

Type Description
Response

The response from the request.