https://github.com/trstringer/sql-server-versions
Web API and website for SQL Server version lookup
https://github.com/trstringer/sql-server-versions
Last synced: 5 months ago
JSON representation
Web API and website for SQL Server version lookup
- Host: GitHub
- URL: https://github.com/trstringer/sql-server-versions
- Owner: trstringer
- Created: 2015-04-17T00:44:02.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-27T16:25:03.000Z (over 10 years ago)
- Last Synced: 2024-10-11T15:05:27.923Z (over 1 year ago)
- Language: C#
- Size: 691 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## SQL Server Versions API and Website
###Description
The API serves as a way to consume SQL Server version information on builds, supportability, and other surrounding data. The website is the accompanying user interface for searching version data and other relevant operations.
###API Reference
**Version Search**
*Get all versions [GET]*
http://sqlserverversions.azurewebsites.net/api/version
*Get a single version [GET]*
http://sqlserverversions.azurewebsites.net/api/version/{major}/{minor}/{build}/{revision}
**Recent Versions and Supportability**
*Get the 5 most recent versions [GET]*
http://sqlserverversions.azurewebsites.net/api/recent
*Get a specified amount of recent versions [GET]*
http://sqlserverversions.azurewebsites.net/api/recent/{topcount}
*Get the most recent by major release [GET]*
http://sqlserverversions.azurewebsites.net/api/latest/{major}/{minor}
*Get the oldest supported versions by major release [GET]*
http://sqlserverversions.azurewebsites.net/api/oldestsupported/{major}/{minor}