This article shows how to update custom properties of an ActiveMQ queue using the REST API.
Change ActiveMQ Queue Custom Properties
PATCH /activemq/queues/{nodeName}/{managerName}/{brokerName}/{queueName}/custom-properties
Update custom properties of an ActiveMQ queue.
Example Request
curl -X 'PATCH' \ 'http://<hostname>:8019/rest/v1/activemq/queues/CMACTIVEMQ/Activemq-server/DemoBroker/sample111/custom-properties'
\ -H 'accept: */*' \
-H 'Authorization: Basic QWRtaW46YWRtaW4=' \
-H 'Content-Type: application/json' \
-d '
{ "additionalProp1": "customsample",
"additionalProp2": "string",
"additionalProp3": "string" }'
Query Parameters
jobDate(int64) – Schedule job date (Unix Timestamp).jobTags(string) – Comma-separated job tags (used only with jobDate).validateAccessForUser(string) – Validate endpoint access for user.
Request Body
{
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
}
Response Codes
204– Object changed.304– Object not changed.*– Error response.
Response Header
204 – Object changed.
access-control-allow-credentials: true
access-control-allow-origin: http://<hostname>:8019
date: Wed,24 Sep 2025 10:41:48 GMT
server: Jetty(10.0.22)
vary: Origin