R/getConceptSetDefinitionBySourceKey.R
getConceptSetDefinitionBySourceKey.Rd
Fetch concept set definition from WebAPI by SourceKey
getConceptSetDefinitionBySourceKey(
conceptSetId,
baseUrl,
vocabularySourceKey = NULL
)
the id of the concept set to retrieve.
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.
An R object representing the ConceptSet definition
Fetches a concept set definition from WebAPI by SourceKey. If SourceKey is not specified, the priority vocabulary will be used.
if (FALSE) {
conceptSetDefinition <- getConceptSetDefinitionBySourceKey(conceptSetId = 282,
baseUrl = "http://server.org:80/WebAPI",
vocabularySourceKey = "MY_VOCAB")
conceptIds <- resolveConceptSet(conceptSetDefinition = conceptSetDefinition,
baseUrl = "http://server.org:80/WebAPI")
}