The function always returns the XML file content provided by the server.
doAPICall(
api.call,
id = NULL,
url.args = list(),
post.args = list(),
file = NULL,
verbosity = NULL,
method,
...
)
[character(1)
]
Unparsed content of the returned XML file.
[character(1)
]
API endpoints listed in APIv1.
[integer(1)
]
Optional ID we pass to the API, like runs/list/1.
[list
]
Named list of key-value pairs passed as HTTP GET parameters, e.g.,
key1=value1&key2=value2 to the API call.
[list
]
Optional. A list passed to the body
-arg for POST
requests.
[character(1)
]
Optional filename to write the XML content to.
[integer(1)
]
Print verbose output on console? Possible values are:
0
: normal output,
1
: info output,
2
: debug output.
Default is set via setOMLConfig
.
[character(1)
]
HTTP request method. Currently one of GET, POST or DELETE.
Another possibility to pass key-value pairs for the HTTP request query. Arguments passed via ... have a higher priority.