DataCite REST API: clients
dc_clients( ids = NULL, query = NULL, year = NULL, provider_id = NULL, software = NULL, include = NULL, limit = 25, page = 1, cursor = NULL, ... )
ids
: (character) one or more client IDsquery
: (character) Query stringyear
: (integer/numeric/character) a yearprovider_id
: a provider IDsoftware
: no idea what should go here, anyone?include
: (character) vector of fields to returnlimit
: (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-GET## Not run: if (dc_check()) { x <- dc_clients() x dc_clients(x$data$id[1]) dc_clients(x$data$id[1:2], verbose = TRUE) } ## End(Not run)
Useful links