Get concepts
getConcepts(
conceptIds,
baseUrl,
vocabularySourceKey = NULL,
snakeCaseToCamelCase = TRUE
)
A vector of concept IDs.
The base URL for the WebApi instance, for example: "http://server.org:80/WebAPI".
The source key of the Vocabulary. By default, the priority Vocabulary is used.
Should the column names of the result be converted to camelCase?
A tibble containing information on the concepts.
if (FALSE) {
conceptSet <- getConceptSet(conceptSetId = 282, baseUrl = "http://server.org:80/WebAPI")
conceptIds <- resolveConceptSet(conceptSet = conceptSet, baseUrl = "http://server.org:80/WebAPI")
concepts <- getConcepts(conceptIds = conceptIds, baseUrl = "http://server.org:80/WebAPI")
}