Reload Plugin Set
This API method reloads a defined set of plugins, which prompts Orchestrator to update the code for those 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 (POST method):
Note: You must use URL encoding for any special characters in parameter values, including username and
password.
https://Orchestrator_IP_address/aspera/orchestrator/api/reload_plugin_set
Submit a request body containing the names of plugins to reload (more than one and
less than all).
Note: Each plugin name must be entered in camel case.
Request
body:
<plugin_set>
<action_type>PluginName1</action_type>
<action_type>PluginName2</action_type>
<action_type>PluginName3</action_type>
</plugin_set>
For example:
<plugin_set>
<action_type>AmazonS3Operation</action_type>
<action_type>AdiTransformation</action_type>
<action_type>AkamaiTranscoding</action_type>
</plugin_set>
Response
<ReloadStatus>
<AmazonS3Operation>
<Port_3000>true</Port_3000>
<Port_3001>true</Port_3001>
<Port_3002>true</Port_3002>
</AmazonS3Operation>
<AdiTransformation>
<Port_3000>true</Port_3000>
<Port_3001>true</Port_3001>
<Port_3002>true</Port_3002>
</AdiTransformation>
<AkamaiTranscoding>
<Port_3000>true</Port_3000>
<Port_3001>true</Port_3001>
<Port_3002>true</Port_3002>
</AkamaiTranscoding>
</ReloadStatus>