This article shows how to search for ActiveMQ Dynamic Producers using the REST API.
Search ActiveMQ Dynamic Producers
GET /activemq/dynamic-producers
Search for ActiveMQ Dynamic Producers with optional filters and parameters.
Example Request
curl -X 'GET' \ 'http://<hostname>:8019/rest/v1/activemq/dynamic-producers?nodeName=CMACTIVEMQ&managerName=Cloudactmq&brokerName=JKMessageBus' \
-H 'accept: application/json' \ -H 'Authorization: Basic QWRtaW46YWRtaW4='
Query Parameters
| Parameter | Type | Description |
|---|---|---|
nodeName |
string | Wildcard node name for search. |
managerName |
string | Wildcard manager name for search. |
brokerName |
string | Wildcard ActiveMQ Broker name for search. |
dynamicProducerName |
string | Wildcard ActiveMQ Dynamic Producer name for search. |
projects |
string | Filter by projects (comma-separated list of project IDs). |
filter |
string | Filter by attribute expression. |
order |
string | Order results by attributes (e.g., topicName:asc,brokerName:desc). |
limit |
integer | Maximum number of results to return. |
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 array of matching ActiveMQ Dynamic Producers objects.
* – Error response.
Example Response
200 OK: Returns ActiveMQ Dynamic Producers objects
[
{
"wgsName": "MQM",
"nodeName": "CMACTIVEMQ",
"managerName": "Cloudactmq",
"brokerName": "JKMessageBus",
"dynamicProducerName": "ID:meshIQ-activeMQ-774f488ddc-41lcf-38593-1759994796685-4:3:1:1",
"uri": "tcp://172.16.31.68:61616",
"general": {
"clientId": "DynamicProducerClient",
"connectionId": "Connection-1058",
"sessionId": 1,
"producerWindowSize": 2048,
"dispatchAsync": true,
"userName": "admin"
},
"state": {
"lastUpdated": "2025-10-10T13:32:08Z",
"destinationName": "PROD.QUEUE.ORDERS",
"destinationQueue": true,
"destinationTemporary": false,
"destinationTemporary": false,
"producerBlocked": false,
"totalTimeBlocked": 0,
"percentageBlocked": 0,
"sentCount": 4521
},
"jobs": {
"totalJobCount": 8,
"scheduledJobCount": 2,
"canceledJobCount": 0,
"successJobCount": 6,
"failedJobCount": 0,
"readyJobCount": 0,
"pendingJobCount": 0,
"jobIds": [
"job-ProdOrder-001",
"job-ProdOrder-002"
]
},
"customProperties": {
"additionalProp1": "priority=high",
"additionalProp2": "region=US-EAST",
"additionalProp3": "retryCount=3"
}
}
]