Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions azure/Guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ Retirement of an API version must follow the standard [_Azure Global Retirements
The Microsoft REST API guidelines give two options for how services and clients communicate the version: a url segment and a query parameter. Azure services **MUST** use the api-version query parameter. For example:

```text
GET https://blobstore.azure.com/foo.com/acct1/c1/blob2?api-version=1.0
PUT https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2014-12-07
POST https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2015-12-07
GET https://blobstore.azure.net/foo.com/acct1/c1/blob2?api-version=1.0
PUT https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2014-12-07
POST https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2015-12-07
```

### API Changes that require a version change
Expand Down