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

Orion/Server API/Version API

< Orion‎ | Server API
Revision as of 13:15, 13 March 2018 by Michael Rennie.ca.ibm.com (Talk | contribs) (Create page for the version API)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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