Retrieves a detailed HTML report from a sandbox analysis.
Usage
get_behaviour_html(sandbox_id = NULL, output_path = NULL, ...)
Arguments
- sandbox_id
Sandbox report ID (character string). Required.
- output_path
Local path to save the HTML file. Optional.
- ...
Additional arguments passed to httr::GET.
Value
Raw HTML content or saves to file if output_path specified
Examples
if (FALSE) { # \dontrun{
# Before calling the function, set the API key using set_key('api_key_here')
html <- get_behaviour_html(sandbox_id='hash_sandboxname')
get_behaviour_html(sandbox_id='hash_sandboxname',
output_path='/tmp/report.html')
} # }