Plugin Version

This method gets the installed version of a single plugin or all plugins.

Note: The default format for the response is XML format. To return a response in JSON format, add &format=json to the request.

Usage

All plugins:

https://Orchestrator_IP_address/aspera/orchestrator/api/plugin_version?login=admin

Response example:

<PluginVersion>
<Plugin>
<version>1.1.6</version>
<name>AscpClient</name>
</Plugin>
<Plugin>
<version>2.6.0</version>
<name>AsperaCentralWatcher</name>
</Plugin>
<Plugin>
<version>0.0.3</version>
<name>AsperaNodeApi</name>
</Plugin>
<Plugin>
<version>0.0.6</version>
<name>AsperaNodeFileWatcher</name>
</Plugin>
<Plugin>
<version>0.1.0</version>
<name>AsperaNodeSearch</name>
</Plugin>
<Plugin>
<version>0.4.1</version>
<name>ConsoleNotification</name>
</Plugin>
<Plugin>
<version>0.2.4</version>
<name>CustomRuby</name>
</Plugin>
<Plugin>
<version>0.3.0</version>
<name>FaspControl</name>
</Plugin>
<Plugin>
<version>2.5.5</version>
<name>FaspTransfer</name>
</Plugin>
<Plugin>
<version>0.5.1</version>
<name>FaspexDelivery</name>
</Plugin>
<Plugin>
<version>1.2.3</version>
<name>FaspexInboxWatcher</name>
</Plugin>
<Plugin>
<version>0.2.7</version>
<name>Filter</name>
</Plugin>
</PluginVersion>

Single plugin:

To request the version of a single plugin, add the name of the plugin as a query parameter.

https://Orchestrator_IP_Address/aspera/orchestrator/api/plugin_version/AscpClient?login=admin

In this example, AscpClient is the name of the plugin whose version will be returned.

Response example
<PluginVersion>
<Plugin>
<name>AscpClient</name>
<version>1.1.6</version>
</Plugin>
</PluginVersion>