Reputation: 464
Is there an API to receive list of published webservices?
I have workspace id and auth token, I can get list of projects and experiments, but I can't get list of services created from experiments. Specifically I need the URL in order to post requests.
(source: windows.net)
In client api I see if we publish a new service we can get it, but do we have more options?
Upvotes: 0
Views: 75
Reputation: 1516
The R Azure ML API has that. Excerpt from https://htmlpreview.github.io/?https://github.com/RevolutionAnalytics/AzureML/blob/master/vignettes/getting_started.html :
(webservices <- services(ws, name = "AzureML-vignette-silly"))
Upvotes: 1