ndex_rest_PUT | R Documentation |
Generic PUT query to API
ndex_rest_PUT(ndexcon, route, data = NULL, multipart = FALSE, raw = FALSE)
ndexcon |
object of class NDExConnection |
route |
Character (route to specific REST query) |
data |
Whatever data to be supplied with query. Should be valid JSON |
multipart |
Whatever data to be supplied with query. Should be valid JSON |
raw |
Specifies if server response should be returned in raw, or if jsonlite::fromJSON is called first. Defaults to FALSE. |
Simply execute HTTP PUT on URL host/route and fetch whatever data REST server returns Making sure the route is well-formed is the job of calling function Making sure the data is well-formed is also the job of calling function
JSON response from REST server, NULL if no valid JSON was received. if parameter raw is TRUE, the raw response is returned without a call to jsonlite::fromJSON.
This function is internal.
ndex_rest_GET
, ndex_rest_POST
, ndex_rest_PUT
and ndex_rest_DELETE
## Establish a server connection
ndexcon = ndex_connect()
## Not run:
ndex_rest_PUT(ndexcon, "/networks/api", data)
ndex_rest_PUT(ndexcon, "/networks/api", data, raw=TRUE)
ndex_rest_PUT(ndexcon, "/networks/api", list(some=data, other=data2), multipart=TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.