This project has retired. For details please refer to its Attic page.
Falcon - GET /api/admin/version

GET /api/admin/version

Description

Get version of the falcon server.

Parameters

  • doAs <optional query param> allows the current user to impersonate the user passed in doAs when interacting with the Falcon system.

Results

Version of the server.

Examples

Rest Call

GET http://localhost:15000/api/admin/version?doAs=joe

Result

{
    "properties":[
        {
            "key":"Version",
            "value":"0.4-incubating-SNAPSHOT-rb47788d1112fcf949c22a3860934167237b395b0"
        },
        {
            "key":"Mode",
            "value":"embedded"
        },
        {
            "key":"authentication",
            "value":"simple"
        },
        {
            "key":"safemode",
            "value":"false"
        }
    ]
}