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/About API"

(Create About API page)
 
(No difference)

Latest revision as of 13:24, 13 March 2018

The About API is a web server API for viewing general and component information about the running server.

About

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

  
Example Response
HTTP/1.1 200 OK
Content-Type: text/html

  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
  <title>About</title>
   <style type = "text/css"> td { padding-right : 10px; }</style></head>
  <body>
  <table>
    <tr>
      <td><img src="../webapp/orion-96.png"/></td>
      <td><p>Build Id: 18.0.0<br/></p></td>
    </tr>
  </table>
  <table>
    <tr>
      <th align="left">Library</th>
      <th align="center">Version</th>
    </tr>
    <tr><td align="left">app-module-path</td><td align="center">^2.2.0</td></tr>
    ....
  </table>
  </html>
Detailed Explanation
The information about the running server.

Back to the top