Skip to main content
POST
/
password-reset
Reset Password with Token
curl --request POST \
  --url https://app.coverwhale.com/api/v1/password-reset \
  --header 'Accept: <accept>' \
  --header 'AccessToken: <api-key>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "username": "j.doe@coverwhale.com",
  "new_password": "<string>",
  "reset_token": "<string>"
}
'
"Auth Success: Password Reset Success."

Authorizations

AccessToken
string
header
required

AWS Cognito access token obtained from the /authentication endpoint. Token expires after 3600 seconds.

Headers

Content-Type
string
required
Accept
string
required

Body

application/json
username
string
required
Example:

"j.doe@coverwhale.com"

new_password
string
required

New password for associated username.

reset_token
string
required

Reset token emailed to associated username.

Response

Authentication Success

The response is of type string.