Skip to main content
POST
/
auth
/
reset-password
Reset Password
curl --request POST \
  --url https://{deploymentHost}/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "reset_token_abc123def456",
  "password": "NewSecurePass123!"
}'
{
"status": 200,
"message": "",
"data": {
"message": "Password has been reset successfully. You can now sign in with your new password."
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Body

application/json
token
string
required
password
string
required
Required string length: 6 - 125

Response

status
integer
required
message
string
required
data
any
required
session
object
required
errors
object[]
required