Description Usage Arguments Value See Also Examples
Download and return help for the specified AzureML web service endpoint.
1 2 | endpointHelp(ep, type = c("apidocument", "r-snippet", "score", "jobs",
"update"))
|
ep |
an AzureML web service endpoint from the |
type |
the type of help to display. |
Returns the help text. If type = "apidocument"
, then returns the help as a list from a parsed JSON document describing the service.
Other discovery functions: discoverSchema
,
endpoints
, services
,
workspace
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
ws <- workspace()
s <- services(ws)
e <- endpoints(ws, s[1,])
endpointHelp(e)
Particularly useful way to see expected service input and output:
endpointHelp(e)$definitions
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.