Organizations metadata.
Usage
organizations(
data = "all",
country = NULL,
uuid = NULL,
query = NULL,
limit = 100,
start = NULL,
curlopts = list()
)
Arguments
- data
(character) The type of data to get. One or more of: 'organization', 'contact', 'endpoint', 'identifier', 'tag', 'machineTag', 'comment', 'hostedDataset', 'ownedDataset', 'deleted', 'pending', 'nonPublishing', or the special 'all'. Default:
'all'
- country
(character) Filters by country.
- uuid
(character) UUID of the data node provider. This must be specified if data is anything other than 'all', 'deleted', 'pending', or 'nonPublishing'.
- query
(character) Query nodes. Only used when
data='all'
- limit
Number of records to return. Default: 100. Maximum: 1000.
- start
Record number to start at. Default: 0. Use in combination with
limit
to page through results.- curlopts
list of named curl options passed on to
HttpClient
. seecurl::curl_options
for curl options
Value
A list of length of two, consisting of a data.frame meta
when
uuid is NULL, and data
which can either be a list or a data.frame
depending on the requested type of data.
Examples
if (FALSE) { # \dontrun{
organizations(limit=5)
organizations(query="france", limit=5)
organizations(country = "SPAIN")
organizations(uuid="4b4b2111-ee51-45f5-bf5e-f535f4a1c9dc")
organizations(data='contact', uuid="4b4b2111-ee51-45f5-bf5e-f535f4a1c9dc")
organizations(data='pending')
organizations(data=c('contact','endpoint'),
uuid="4b4b2111-ee51-45f5-bf5e-f535f4a1c9dc")
# Pass on curl options
organizations(query="spain", curlopts = list(verbose=TRUE))
} # }