PUT
/
kafka-access
/
kafka-users
/
{username}
Update Kafka User
curl --request PUT \
  --url https://api.streamkap.com/kafka-access/kafka-users/{username} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "whitelist_ips": "<string>",
  "kafka_acls": [],
  "password": "<string>"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

username
string
required

Body

application/json

Update Kafka User Body

whitelist_ips
string | null
kafka_acls
KafkaAclModel · object[]
password
string | null

Response

Successful Response

The response is of type any.