DataCite REST API: client prefixes
dc_client_prefixes( query = NULL, year = NULL, client_id = NULL, prefix_id = NULL, sort = NULL, include = NULL, limit = 25, page = 1, cursor = NULL, ... )
query
: (character) Query stringyear
: (integer/numeric/character) a yearclient_id
: a client IDprefix_id
: a prefix IDsort
: (character) variable to sort byinclude
: (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_client_prefixes() x } ## End(Not run)
Useful links