The purpose of this method is to retrieve all possible extensions which were installed in your beebox. Custom plugins are mentioned in following page Administration - Beebox Extensions

URL

(GET) /api/server/extensions?token=
CODE

PARAMETERS

Parameters are:

token

The session token obtained when connecting.

 

RESULTS

The method returns JSON and HTTP status 200. Other HTTP status values indicate an error.

EXAMPLE

A typical result may look like:

{
    "extensions": [
        {
            "package": "GitConnector.BeeboxPackage",
            "id": "git-exchange",
            "name": "GIT Exchange",
            "version": "1.00",
            "description": "Integration of Beebox with GIT Control version.",
            "author": "Wordbee S.A.",
            "parameterDefault": null,
            "parameterHelp": null,
            "enableByDefault": false,
            "isglobal": true
        }
    ],
    "errors": []
}
CODE