Delete a protocol plug-in
Purpose
Deletes a specified protocol plug-in.
URI
Use the Eclipse Amlen REST API DELETE method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/Plugin/<NameOfPlugin>
- NameOfPlugin
 - Specifies the name of the protocol plug-in that you want to delete.
 
Usage NotesĀ®
- Capitalization must be used as shown.
 - You must restart the protocol plug-in server for the deletion to take effect.
 
Related REST Administration APIs
Example
The following example demonstrates deleting a protocol plug-in named json_msg by using cURL. 
curl -X DELETE
    http://127.0.0.1:9089/ima/v1/configuration/Plugin/json_msgThe following shows an example response to the DELETE method.
{        
  "Version": "v1",
  "Code": "CWLNA6011",
  "Message": "The requested configuration change has completed successfully."
}