Skip to main content

Notice: This Wiki is now read only and edits are no longer 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

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