AzureML (version 0.2.14)

endpointHelp: Display AzureML Web Service Endpoint Help Screens.

Description

Download and return help for the specified AzureML web service endpoint.

Usage

endpointHelp(ep, type = c("apidocument", "r-snippet", "score", "jobs",
  "update"))

Arguments

ep

an AzureML web service endpoint from the endpoints function.

type

the type of help to display.

Value

Returns the help text. If type = "apidocument", then returns the help as a list from a parsed JSON document describing the service.

See Also

Other discovery functions: discoverSchema, endpoints, services, workspace

Examples

Run this code
# 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

# }

Run the code above in your browser using DataLab