REST API requests for Cluster Manager UI settings
| Redis Enterprise Software |
|---|
| Method | Path | Description |
|---|---|---|
| GET | /v1/cm_settings |
Get Cluster Manager UI settings |
| PUT | /v1/cm_settings |
Update Cluster Manager UI settings |
GET /v1/cm_settings
Get Cluster Manager UI settings.
| Permission name | Roles |
|---|---|
| view_cluster_info | admin cluster_member cluster_viewer db_member db_viewer user_manager |
GET /v1/cm_settings
| Key | Value | Description |
|---|---|---|
| Host | cnm.cluster.fqdn | Domain name |
| Accept | application/json | Accepted media type |
Returns a cm_settings object.
{
"timezone": "UTC"
}
| Code | Description |
|---|---|
| 200 OK | No error |
PUT /v1/cm_settings
Update Cluster Manager UI settings.
| Permission name | Roles |
|---|---|
| update_cluster | admin |
PUT /v1/cm_settings
{
"timezone": "US/Pacific"
}
| Key | Value | Description |
|---|---|---|
| Host | cnm.cluster.fqdn | Domain name |
| Accept | application/json | Accepted media type |
Include a cm_settings object with updated fields in the request body.
Returns a cm_settings object with the updated fields.
{
"timezone": "US/Pacific"
}
| Code | Description |
|---|---|
| 200 OK | Success, time zone config has been set. |
| 400 Bad Request | Bad or missing configuration parameters. |