A newer version is available. For the latest information, see the
current release documentation.
Re-authenticate to generate a tokenedit
Re-authenticate.
Requestedit
POST /api/v1/users/auth/reauthenticate
Request bodyedit
(ReAuthenticationRequest
) (required) The request to reauthenticate
Responsesedit
-
200
-
(
ReAuthenticationResponse
) The authentication is successful and token is returned in the body of the response. -
400
-
(
BasicFailedReply
) The request is invalid. Specify a different request, then try again. (code:api_keys.invalid_re_auth_credentials
)Headers
-
x-cloud-error-codes
(string
; allowed values: [api_keys.invalid_re_auth_credentials
]) - The error codes associated with the response
-
-
449
-
(
BasicFailedReply
) Elevated permissions are required. (code:root.unauthorized.rbac.elevated_permissions_required
)Headers
-
x-cloud-error-codes
(string
; allowed values: [root.unauthorized.rbac.elevated_permissions_required
]) - The error codes associated with the response
-
To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.
Request exampleedit
curl -XPOST {{hostname}}/api/v1/users/auth/reauthenticate \ -H "Authorization: ApiKey $ECE_API_KEY" \ -H 'Content-Type: application/json' \ -d ' { "password" : "string" } '