This article shows how to retrieve the details of a specific ActiveMQ Manager using the REST API.
Read ActiveMQ Managers
GET /activemq/managers/{nodeName}/{managerName}
Retrieve details of a specific ActiveMQ Manager.
curl -X 'GET' \ 'http://<hostname>:8019/rest/v1/activemq/managers/CMACTIVEMQ/Activemq-server' \ -H 'accept: application/json' \ -H 'Authorization: Basic QWRtaW46YWRtaW4='
Query Parameters
| Parameter | Type | Description |
|---|---|---|
attributes |
string | Comma-separated list of attributes or sections to include in the response. |
validateAccessForUser |
string | Validate endpoint access for user. |
Response Codes
200 OK: Returns an ActiveMQ Manager object.
*: Error response.
Example Response
200 OK: Returns an ActiveMQ Manager object.
[
{
"wgsName": "MQM",
"nodeName": "CMACTIVEMQ",
"managerName": "Activemq-server"
}
]
Reference Articles
Using the REST API using the Navigator demo system
Performing REST API operations using the Swagger UI