Management API
This page is a high-level map of YedMQ management endpoints. For request and response schemas, use the generated Management API Reference.
System and plugin endpoints
GET /api/v1/system_infoGET /api/v1/pluginsPOST /api/v1/plugins/rescanGET /api/v1/plugins/{plugin_name}POST /api/v1/plugins/{plugin_name}/startPOST /api/v1/plugins/{plugin_name}/stopPOST /api/v1/plugins/{plugin_name}/restartGET /api/v1/plugins/{plugin_name}/logs
Plugin management notes
POST /api/v1/plugins/rescanrefreshes discovered manifests from disk only. It does not change plugin process state.POST /api/v1/plugins/{plugin_name}/restartis the explicit way to apply an updatedplugin.toml.GET /api/v1/pluginssupportsscopeandstatefilters in addition tooffsetandlimit.GET /api/v1/plugins/{plugin_name}/logsreturns the in-memory plugin log buffer and supportstailfor recent lines.
Tenant-scoped endpoints
GET /api/v1/{tenant_id}/clientsPOST /api/v1/{tenant_id}/clients/{client_id}/kickoffGET /api/v1/{tenant_id}/topicsGET /api/v1/{tenant_id}/messages/retainedDELETE /api/v1/{tenant_id}/messages/retained/{topic}POST /api/v1/{tenant_id}/messages
Cluster endpoints
GET /api/v1/cluster/metricsGET /api/v1/cluster/readyPOST /api/v1/cluster/initPOST /api/v1/cluster/learnersPOST /api/v1/cluster/nodesPOST /api/v1/cluster/topic/learnersPOST /api/v1/cluster/session_actor_map/learnersPOST /api/v1/cluster/session_state/learnersPOST /api/v1/cluster/membershipPOST /api/v1/cluster/topic/membershipPOST /api/v1/cluster/session_actor_map/membershipPOST /api/v1/cluster/session_state/membershipPOST /api/v1/cluster/raft/topic/initPOST /api/v1/cluster/raft/session_actor_map/initPOST /api/v1/cluster/raft/session_state/init
Cluster operation notes
GET /api/v1/cluster/readyreturns a structured readiness report and is the best endpoint for health checks or orchestration gates.POST /api/v1/cluster/nodesis the high-level node-add flow. It coordinates learner addition and membership changes across all three raft groups.- The per-raft
.../learnersendpoints are lower-level controls intended for staged rollout, recovery, or manual repair workflows.
Reference workflow
- Use the overview page to understand authentication and API grouping.
- Use the generated OpenAPI reference for exact payloads.
- Keep tenant IDs explicit in automation scripts to avoid cross-tenant mistakes.