Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the Azure API version

Tags:

I'm trying to access the result of a GET request provided by Azure, as shown in the example : https://msdn.microsoft.com/sv-se/library/azure/dn820159.aspx

My problem is that the api-version is a mandatory argument, but I have no idea about what to write inside. I'm a bit lost with the Azure Batch documentation, it doesn't seem to be complete.

I found something in an Azure webpage : https://azure.microsoft.com/en-us/documentation/articles/search-api-versions/ and the api-version was api-version=2015-02-28. However, if I try it in my browser, I have this answer : "key":"Reason","value":"The specified api version string is invalid".

Any idea of what I can put inside the api-version parameter ?

like image 791
Romain Avatar asked Aug 29 '16 11:08

Romain


People also ask

What is API version in Azure?

For most purposes, each API version can be considered its own independent API. Two different API versions might have different sets of operations and different policies. With versions you can: Publish multiple versions of your API at the same time. Use a path, query string, or header to differentiate between versions.

What is the latest API version?

Android 13 (API level 33)


1 Answers

Have a look here

As the time of this writing

The version of the Batch API described here is '2016-07-01.3.1', and using that version is recommended where possible.
Earlier versions include '2016-02-01.3.0', '2015-12-01.2.1', '2015-11-01.2.1', '2015-06-01.2.0', '2015-03-01.1.1', and '2014-10-01.1.0'.

So try specifying '2016-07-01.3.1'

like image 118
DAXaholic Avatar answered Sep 26 '22 16:09

DAXaholic