Retrieves a list of datasets that the authenticated user has access to. Results can be filtered by team and ordered by specified fields.
Usage
cto_dataset_list(
order_by = "createdOn",
sort = c("ASC", "DESC"),
team_id = NULL
)Arguments
- order_by
String. The field to sort the results by. Options are:
"id","title","createdOn","modifiedOn","status","version", or"discriminator". Defaults to"createdOn".- sort
String. The direction of the sort:
"asc"(ascending) or"desc"(descending). Defaults to"asc".- team_id
String (Optional). Filter datasets by a specific Team ID. If provided, only datasets accessible to that team are returned. Example:
'team-456'.
See also
Other Dataset Management Functions:
cto_dataset_create(),
cto_dataset_delete(),
cto_dataset_download(),
cto_dataset_info()