Generic REST resource update.
Usage
opal.put(
opal,
...,
query = list(),
body = "",
contentType = "application/x-rscript",
callback = NULL
)See also
Other REST functions:
opal.delete(),
opal.get(),
opal.post()
Examples
if (FALSE) { # \dontrun{
o <- opal.login('administrator','password', url = 'https://opal-demo.obiba.org')
opal.put(o, 'some', 'resource', 'toupdate', body = '{"some":"value"}')
opal.logout(o)
} # }