Show protocols and their allowed actions
Purpose
Shows the protocols that are on Eclipse Amlen and the actions that are allowed for each of them.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/Protocol
Usage NotesĀ®
- Capitalization must be used as shown.
Related REST Administration APIs
Example
Shows all the protocols that are on Eclipse Amlen and the actions that are allowed for each of them by using cURL:curl -X GET http://127.0.0.1:9089/ima/v1/configuration/Protocol
An example response to the GET method:
{
"Version":"v1",
"Protocol": {
"jms": {
"UseTopic":true,
"UseQueue":true,
"UseShared":true,
"UseBrowse":true
},
"mqtt": {
"UseTopic":true,
"UseQueue":false,
"UseShared":true,
"UseBrowse":false
}
}
}