DataCite REST API: activities
dc_activities( ids = NULL, query = NULL, limit = 25, page = 1, cursor = NULL, ... )
ids
: (character) one or more activity IDsquery
: (character) Query stringlimit
: (numeric/integer) results per pagepage
: (numeric/integer) the page to get results for. default: 1cursor
: (character) page cursor (used instead of limit
param). to use cursor pagination, set cursor = 1
, then use the link in $links$next
...
: curl options passed on to crul::verb-GETfor more info on the /activities
route see https://support.datacite.org/docs/tracking-provenance
## Not run: if (dc_check()) { x <- dc_activities() x # dc_activities(x$data$id[1]) # FIXME: doesn't work, returns no data # dc_activities(query = "ecology") # FIXME: this thlimit a 500 error } ## End(Not run)
Useful links