Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Server API/Version API"

(Create page for the version API)
 
(No difference)

Latest revision as of 13:15, 13 March 2018

The Version API is a web server API for viewing the version information of the running server.

Version

Overview
To view version information, send a GET to the /version endpoint
HTTP Method
GET
Example Request
GET /version HTTP/1.1
Orion-Version: 1.0

  
Example Response
HTTP/1.1 200 OK
Content-Type: application/json

{
 "build": "18.0.0"
}
Detailed Explanation
This is the version of the running server.

Back to the top