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

GET /api/admin/config/:config-type

Description

Get configuration information of the falcon server.

Parameters

  • :config-type can be build, deploy, startup or runtime

Results

Configuration information of the server.

Examples

Rest Call

GET http://localhost:15000/api/admin/config/deploy

Result

{
    "properties": [
        {
            "value": "embedded",
            "key": "deploy.mode"
        },
        {
            "value": "all",
            "key": "domain"
        }
    ]
}