Reset 'elastic' user password
Resets the password of the 'elastic' user.
Path parameters
-
Identifier for the Deployment.
-
User-specified RefId for the Resource (or '_main' if there is only one).
Responses
-
The password reset was out carried successfully
-
- The Deployment specified by {deployment_id} cannot be found. (code:
deployments.deployment_not_found
) - The Resource specified by {ref_id} cannot be found. (code:
deployments.deployment_resource_not_found
)
- The Deployment specified by {deployment_id} cannot be found. (code:
-
Failed to reset the 'elastic' user's password. (code:
deployments.elasticsearch.password_reset_error
)
POST /deployments/{deployment_id}/elasticsearch/{ref_id}/_reset-password
curl \
-X POST https://{{hostname}}/api/v1/deployments/{deployment_id}/elasticsearch/{ref_id}/_reset-password
Response examples (200)
{
"username": "string",
"password": "string"
}
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (500)
# Headers
x-cloud-error-codes: deployments.elasticsearch.password_reset_error
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}