diario_get_reports {diario} | R Documentation |
Get reports of a specific project
Description
This function retrieves reports of a specific project with optional parameters for limit and order.
Usage
diario_get_reports(project_id, limit = 50, order = "desc")
Arguments
project_id |
A valid non-empty string with the project ID. |
limit |
An integer specifying the maximum number of reports to retrieve. Default is 50. |
order |
A character string specifying the order of the reports (e.g., "asc" or "desc"). Default is "desc". |
Value
A tibble containing the reports.
Examples
## Not run:
reports <- diario_get_reports("6717f864d163f517ae06e242", limit = 10, order = "asc")
## End(Not run)
[Package diario version 0.1.0 Index]