Retourne la liste des attachments ou si un objet dataset est passé en argument, la liste des attachments de ce dataset.
Exemples
# toutes les pièces jointes
list_attachments()
#> # A tibble: 4 × 11
#> id rid type title description published url created_at last_modified
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 693074… 4cea… docu… Un a… Un fichier… 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> 2 693074… 344e… docu… Un f… Un fichier… 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> 3 693074… 0290… hist… title description 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> 4 693074… 9884… docu… title description 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> # ℹ 2 more variables: remote <lgl>, udataUrl <chr>
library(dplyr, warn.conflicts = FALSE)
# les pièces jointes d'un dataset en particulier
list_datasets() %>%
filter(title == "Un jeu de données de test") %>%
list_attachments()
#> # A tibble: 2 × 11
#> id rid type title description published url created_at last_modified
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 693074… 4cea… docu… Un a… Un fichier… 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> 2 693074… 344e… docu… Un f… Un fichier… 2025-12-… http… 2025-12-0… 2025-12-03T1…
#> # ℹ 2 more variables: remote <lgl>, udataUrl <chr>