pbi_dataset_refresh {powerbiR} | R Documentation |
Triggers a refresh for the specified dataset from the specified workspace.
pbi_dataset_refresh(group_id, dataset_id)
group_id |
The ID of the workspace. |
dataset_id |
The ID of the dataset. |
If successful, the refresh request ID is returned.
## Not run:
group_id <- "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
dataset_id <- "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
pbi_dataset_refresh(group_id, dataset_id)
#> A refresh of dataset xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx was triggered.
#>
#> To check status, use pbi_dataset_refresh_hist() and the request ID returned
#> by this function.
#> [1] "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
## End(Not run)