Re-authenticate to generate a token

edit

Re-authenticate.

Request

edit

POST /api/v1/users/auth/reauthenticate

Request body

edit

(ReAuthenticationRequest) (required) The request to reauthenticate

Responses

edit
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)

449

(BasicFailedReply) Elevated permissions are required. (code: root.unauthorized.rbac.elevated_permissions_required)

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request example

edit
curl -XPOST {{hostname}}/api/v1/users/auth/reauthenticate \
-u $CLOUD_USER:$CLOUD_KEY \
-H 'Content-Type: application/json' \
-d '
{
   "password" : "string"
}
'