buildUrl build URL for call to Core REST API.

buildUrl(coreApi, special = NULL, useVerbose = FALSE)

Arguments

coreApi

coreApi object with valid jsessionid

special

flag for special sdk endpoints

useVerbose

Use verbose communication for debugging

Value

RETURN Core REST URL

Details

apiCall base call to Core REST API.

Examples

# NOT RUN {
api<-CoreAPI("PATH TO JSON FILE")
login<- CoreAPI::authBasic(api)
response <-CoreAPI::apiCall(login$coreApi,body,"json",useVerbose=FALSE)
logOut(login$coreApi )
# }