This article shows how to update the custom properties of an ActiveMQ manager using the REST API.
Update ActiveMQ Manager Custom Properties
PATCH /activemq/managers/{nodeName}/{managerName}/custom-properties
Updates the custom properties of a specific ActiveMQ Manager.
Example Request
curl -X 'PATCH' \
'http://<hostname>:8019/rest/v1/activemq/managers/CMACTIVEMQ/Activemq-server/custom-properties' \
-H 'accept: */*' \
-H 'Authorization: Basic QWRtaW46YWRtaW4=' \
-H 'Content-Type: application/json' \
-d '{
"additionalProp1": "Testprop",
"additionalProp2": "testprop1",
"additionalProp3": "string"
}'
Query Parameters
| Parameter | Type | Description |
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": "Testprop",
"additionalProp2": "testprop1",
"additionalProp3": "string"
}
Response Codes
-
204 No Content: Successfully updated. -
304 Not Modified: No change made. -
*: Error occurred.
Response Header
204 No Content: Successfully updated.
access-control-allow-credentials: true
access-control-allow-origin: http://<hostname>:8019
date: Fri,26 Sep 2025 10:20:22 GMT
server: Jetty(10.0.22)
vary: Origin