Apache Kafka Rest Proxy User

Operations relating to the Apache Kafka Rest Proxy user.

List all Kafka Rest Proxy users.

SecurityBasic Authentication
Request
path Parameters
clusterId
required
string <uuid>

ID of the cluster.

Responses
200

Successfully retrieved application users of Kafka Rest Proxy.

get/cluster-management/v2/data-sources/kafka_rest_proxy_cluster/{clusterId}/kafka-rest-proxy-users/v2/
Request samples
Response samples
application/json
[
  • {
    }
]

Change a Kafka Rest Proxy user password.

SecurityBasic Authentication
Request
path Parameters
clusterId
required
string <uuid>

ID of the Kafka Rest Proxy cluster.

userName
required
string <string>

Name of the Kafka Rest Proxy user.

Request Body schema: application/json
required
password
required
string <password>

Password for the Kafka Rest Proxy user.

Responses
202

Requested Kafka Rest Proxy user's password update.

404

Kafka Rest Proxy cluster not found.

503

Service Unavailable

504

Gateway Timeout

put/cluster-management/v2/operations/applications/kafka-rest-proxy/clusters/v2/{clusterId}/users/v2/{userName}/change-password/v2
Request samples
application/json
{
  • "password": "my1password!"
}
Response samples
application/json
{
  • "password": "my1password!"
}