PUT /v1/security/users/{user}

Update a user.

Path parameters

  • user string Required
application/json

Body

  • algorithm string

    Values are SCRAM-SHA-256 or SCRAM-SHA-512.

  • password string

Responses

  • 200

    User successfully updated

PUT /v1/security/users/{user}
curl \
 --request PUT 'http://localhost:9644/v1/security/users/{user}' \
 --header "Content-Type: application/json" \
 --data '{
  "algorithm": "SCRAM-SHA-256",
  "password": "string"
}'
Request examples
{
  "algorithm": "SCRAM-SHA-256",
  "password": "string"
}